We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8846ac commit 6559502Copy full SHA for 6559502
.github/workflows/busted.yml
@@ -24,12 +24,14 @@ jobs:
24
run: |
25
luarocks install --only-deps fluent-scm-0.rockspec
26
luarocks install busted
27
- luarocks install luacov-coveralls
+ luarocks install https://luarocks.org/manifests/moteus/luacov-coveralls-scm-0.rockspec
28
luarocks install luafilesystem
29
luarocks install dkjson
30
- name: Run Busted Tests
31
run: busted -c -v
32
- - name: Log coverage to coveralls.io
33
- if: matrix.luaVersion == '5.3' && success()
+ - name: Report Test Coverage
+ if: success()
34
continue-on-error: true
35
- run: luacov-coveralls -i fluent -e spec -v -t "${{ secrets.COVERALLS_TOKEN }}"
+ run: luacov-coveralls
36
+ env:
37
+ COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments