We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5688fd3 commit 9148288Copy full SHA for 9148288
1 file changed
.github/workflows/ci.yml
@@ -41,9 +41,9 @@ jobs:
41
luarocks install luacov-coveralls
42
43
- name: Upload coverage status
44
+ # Lua 5.5 report depends on https://github.com/lunarmodules/luacov/pull/118
45
+ if: ${{ matrix.lua-version != '5.5' }}
46
run: |
- # Lua 5.5 report depends on https://github.com/lunarmodules/luacov/pull/118
- if: ${{ matrix.lua-version != '5.5' }}
47
export MY_PYTHON_VER=$(python -c 'import sys; print(".".join(sys.version.split(".")[0:2]))')
48
export PATH="/Users/runner/Library/Python/$MY_PYTHON_VER/bin:$PATH"
49
coveralls -b . -i src --dump c.report.json
0 commit comments