Skip to content

Commit

Permalink
fix: alpine musl
Browse files Browse the repository at this point in the history
  • Loading branch information
dirvine committed Nov 30, 2024
1 parent 5a91c4a commit 32ea998
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,14 @@ jobs:
distro: alpine_latest
githubToken: ${{ github.token }}
install: |
apk add py3-pip
pip3 install -U pip pytest click>=8.0.0
apk add py3-pip python3 python3-dev python3-venv
run: |
pip3 install --find-links dist/ ${{ env.PACKAGE_NAME }}
python3 -m pytest
python3 -m venv /venv
. /venv/bin/activate
pip install -U pip pytest click>=8.0.0
pip install --find-links dist/ ${{ env.PACKAGE_NAME }}
pytest -v
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 32ea998

Please sign in to comment.