Bump actions/download-artifact from 3.0.2 to 4.2.1 #696
Workflow file for this run
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@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 | |
with: | |
egress-policy: audit | |
- name: Check out the repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Python | |
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.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 }} |