We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5b647d commit 879f785Copy full SHA for 879f785
1 file changed
.github/workflows/ci.yml
@@ -35,3 +35,15 @@ jobs:
35
- name: Run tests
36
run: |
37
lua -lluacov test.lua
38
+
39
+ - name: Install luacov-coveralls
40
+ run: |
41
+ pip install --user cpp-coveralls
42
+ luarocks install luacov-coveralls
43
44
+ - name: Upload coverage status
45
46
+ export MY_PYTHON_VER=$(python -c 'import sys; print(".".join(sys.version.split(".")[0:2]))')
47
+ export PATH="/Users/runner/Library/Python/$MY_PYTHON_VER/bin:$PATH"
48
+ coveralls -b . -i src --dump c.report.json
49
+ luacov-coveralls -j c.report.json -v -t ${{ secrets.GITHUB_TOKEN }}
0 commit comments