Bump actions/setup-python from 4 to 5 #145
Workflow file for this run
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: Python Package | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
python: | |
- "3.6" | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install build dependencies | |
run: | | |
sudo apt-get install -qy \ | |
gettext \ | |
libkeyutils-dev \ | |
libgirepository1.0-dev | |
- run: pip install -U pip | |
- run: pip install setuptools wheel | |
- run: python setup.py sdist bdist_wheel | |
- run: pip install dist/*.whl keyutils | |
- run: pip install twine flake8 | |
- run: twine check dist/* | |
- run: flake8 | |
- run: python test/test_cache.py | |
- run: python test/test_match.py | |
- uses: actions/upload-artifact@v3 | |
with: {name: dist, path: dist/} | |
if: matrix.os == 'ubuntu-20.04' && | |
matrix.python == '3.9' | |
deploy: | |
name: Upload release | |
runs-on: ubuntu-latest | |
needs: build | |
if: startsWith(github.ref, 'refs/tags/v') && success() | |
environment: | |
name: pypi | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4.1.7 | |
with: {name: dist, path: dist/} | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
# with: | |
# repository-url: https://test.pypi.org/legacy/ |