Skip to content

Commit

Permalink
Test wheel installation
Browse files Browse the repository at this point in the history
  • Loading branch information
sevein committed Dec 16, 2024
1 parent 583b20d commit 5b783e3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,13 @@ jobs:
python3 -m build
setuptools-golang-build-manylinux-wheels --golang=1.23.4 --pythons=cp39-cp39
python3 -m twine check --strict dist/*
- name: Test wheel installation
shell: bash
run: |
python3 -m venv test_env
source test_env/bin/activate
pip install dist/*.whl
python -c "import pygfried; print('Version:', pygfried.version())"
- name: Upload distribution packages to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')

0 comments on commit 5b783e3

Please sign in to comment.