Skip to content

Commit

Permalink
ci: fix python version on macos (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamhm committed Dec 13, 2023
1 parent 97b522e commit ff2cbc2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -43,6 +43,7 @@ jobs:
- name: Coverage
run: |
export PATH="/Users/runner/Library/Python/2.7/bin:$PATH"
export MY_PYTHON_VER=$(python -c 'import sys; print(".".join(sys.version.split(".")[0:2]))')
export PATH="/Users/runner/Library/Python/$MY_PYTHON_VER/bin:$PATH"
coveralls -b . -i src --dump c.report.json
luacov-coveralls -j c.report.json -v -t ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ff2cbc2

Please sign in to comment.