Drop support for Python 3.7 #62
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: build | |
on: | |
push: | |
branches: | |
pull_request: | |
branches: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade Pip | |
run: python -m pip install -U pip | |
- name: Install package and development dependencies | |
run: python -m pip install -e .[dev] | |
- name: Test with pytest | |
run: | | |
pytest | |
deploy: | |
name: Deploy | |
environment: Deployment | |
needs: test | |
runs-on: ubuntu-latest | |
if: github.ref=='refs/heads/main' && github.event_name!='pull_request' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Check release | |
id: check_release | |
run: | | |
python -m pip install autopub[github] | |
echo "release=$(autopub check)" >> $GITHUB_OUTPUT | |
- name: Publish | |
if: ${{ steps.check_release.outputs.release=='' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
TWINE_USERNAME: "__token__" | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
git remote set-url origin https://[email protected]/${{ github.repository }} | |
autopub deploy |