Skip to content

Merge pull request #225 from sethmlarson/pin-github-actions #135

Merge pull request #225 from sethmlarson/pin-github-actions

Merge pull request #225 from sethmlarson/pin-github-actions #135

Workflow file for this run

name: CI
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
on: [push, pull_request]
env:
FORCE_COLOR: 1
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
persist-credentials: false
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: "3.x"
- run: pipx run nox -s lint
tests:
name: Tests (${{ matrix.os }}, ${{ matrix.python-version }})
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [Ubuntu, macOS, Windows]
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
persist-credentials: false
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: ${{ matrix.python-version }}-dev
cache: pip
cache-dependency-path: "dev-requirements.txt"
- run: pipx run nox -s test-${{ matrix.python-version }}
publish:
name: Publish release
runs-on: ubuntu-latest
needs: tests
environment: release
permissions:
id-token: write # Needed for trusted publishing
if: ${{ startsWith(github.ref, 'refs/tags/') }}
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
persist-credentials: false
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: "3.13"
- run: |
python -m pip install -r .github/workflows/publish-requirements.txt
python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1