Merge pull request #1220 from sigmavirus24/pre-commit-ci-update-config #8
This file contains hidden or 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 tests | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: | |
- { VERSION: "3.9", TOXENV: "py39", ALLOW_FAILURE: false } | |
- { VERSION: "3.10", TOXENV: "py310", ALLOW_FAILURE: false } | |
- { VERSION: "3.11", TOXENV: "py311", ALLOW_FAILURE: false } | |
- { VERSION: "3.12", TOXENV: "py312", ALLOW_FAILURE: false } | |
- { VERSION: "3.13", TOXENV: "py313", ALLOW_FAILURE: false } | |
- { | |
VERSION: "3.13", | |
TOXENV: "flake8,doclint,docs,commitlint", | |
ALLOW_FAILURE: false, | |
} | |
- { VERSION: "3.13", TOXENV: "docstrings", ALLOW_FAILURE: true } | |
- { VERSION: "pypy3.9", TOXENV: "pypy", ALLOW_FAILURE: false } | |
steps: | |
- name: Harden the runner (Audit all outbound calls) | |
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0 | |
with: | |
egress-policy: audit | |
- name: Check out the repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Python | |
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
with: | |
python-version: ${{ matrix.PYTHON.VERSION }} | |
- name: Upgrade pip | |
run: | | |
pip install pip | |
pip --version | |
- name: Install Tox | |
run: | | |
pip install tox | |
tox --version | |
- name: Run Tox | |
run: tox | |
env: | |
TOXENV: ${{ matrix.PYTHON.TOXENV }} | |
GH_RECORD_MODE: "none" | |
continue-on-error: ${{ matrix.PYTHON.ALLOW_FAILURE }} |