Merge pull request #53 from jburel/build #161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Tox | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
name: Run tox tests | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: python -mpip install --upgrade wheel pytest tox | |
- name: Get tox target | |
id: toxtarget | |
run: | | |
py=$(echo ${{ matrix.python-version }} | tr -d .) | |
echo "py=$py" >> $GITHUB_OUTPUT | |
- name: Run tests | |
run: tox -e py${{ steps.toxtarget.outputs.py }} | |
publish-pypi: | |
name: Pypi | |
if: startsWith(github.ref, 'refs/tags') | |
needs: | |
# Only publish if other jobs passed | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Build package | |
run: | | |
python -mpip install build | |
python -m build | |
- name: Publish to PyPI | |
uses: pypa/[email protected] | |
with: | |
password: ${{ secrets.PYPI_PASSWORD }} |