diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2023-12-12 21:07:54 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-12 21:07:54 -0300 |
commit | ff2cbc21f1a2fd34d30c0840ff2abb0121d46131 (patch) | |
tree | 4fee440da7f3e07ddf940260ad946145a9ad710a | |
parent | 97b522ec123acb28971f19953fb6558fe79daabf (diff) | |
download | luafilesystem-ff2cbc21f1a2fd34d30c0840ff2abb0121d46131.tar.gz luafilesystem-ff2cbc21f1a2fd34d30c0840ff2abb0121d46131.tar.bz2 luafilesystem-ff2cbc21f1a2fd34d30c0840ff2abb0121d46131.zip |
ci: fix python version on macos (#173)
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 877c6dd..870ede5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml | |||
@@ -43,6 +43,7 @@ jobs: | |||
43 | 43 | ||
44 | - name: Coverage | 44 | - name: Coverage |
45 | run: | | 45 | run: | |
46 | export PATH="/Users/runner/Library/Python/2.7/bin:$PATH" | 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" | ||
47 | coveralls -b . -i src --dump c.report.json | 48 | coveralls -b . -i src --dump c.report.json |
48 | luacov-coveralls -j c.report.json -v -t ${{ secrets.GITHUB_TOKEN }} | 49 | luacov-coveralls -j c.report.json -v -t ${{ secrets.GITHUB_TOKEN }} |