-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (40 loc) · 1.09 KB
/
busted.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
on: [push, pull_request]
name: busted
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: luk3yx/minetest-formspec_ast
path: formspec_ast
- uses: actions/checkout@v3
with:
repository: luk3yx/minetest-flow
path: flow
- uses: actions/checkout@v3
with:
path: flow-extras
- uses: leafo/gh-actions-lua@v9
- uses: leafo/gh-actions-luarocks@v4
- name: setup deps
run: |
luarocks install busted
luarocks install luacov
luarocks install luacov-multiple
luarocks install luacov-coveralls
- name: run tests
run: |
pushd flow-extras
busted -c -v
popd
- name: send coverage
if: success()
continue-on-error: true
run: |
pushd flow-extras
luacov-coveralls -r $PWD -i "^init" -i "^tools" -i "^widgets"
# Keep above in sync with ./run-tests
popd
env:
COVERALLS_REPO_TOKEN: ${{ github.token }}