[pre-commit.ci] pre-commit autoupdate (#542) #571
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: main | |
on: | |
push: | |
branches: | |
- "*" | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
name: [ | |
"windows-py38", | |
"windows-py313", | |
"windows-pypy3", | |
"ubuntu-py38-pytestmain", | |
"ubuntu-py38", | |
"ubuntu-py39", | |
"ubuntu-py310", | |
"ubuntu-py311", | |
"ubuntu-py312", | |
"ubuntu-py313", | |
"ubuntu-pypy3", | |
"ubuntu-benchmark", | |
] | |
include: | |
- name: "windows-py38" | |
python: "3.8" | |
os: windows-latest | |
tox_env: "py38" | |
- name: "windows-py313" | |
python: "3.13" | |
os: windows-latest | |
tox_env: "py313" | |
- name: "windows-pypy3" | |
python: "pypy3.9" | |
os: windows-latest | |
tox_env: "pypy3" | |
- name: "ubuntu-py38" | |
python: "3.8" | |
os: ubuntu-latest | |
tox_env: "py38" | |
use_coverage: true | |
- name: "ubuntu-py38-pytestmain" | |
python: "3.8" | |
os: ubuntu-latest | |
tox_env: "py38-pytestmain" | |
use_coverage: true | |
- name: "ubuntu-py39" | |
python: "3.9" | |
os: ubuntu-latest | |
tox_env: "py39" | |
use_coverage: true | |
- name: "ubuntu-py310" | |
python: "3.10" | |
os: ubuntu-latest | |
tox_env: "py310" | |
- name: "ubuntu-py311" | |
python: "3.11" | |
os: ubuntu-latest | |
tox_env: "py311" | |
use_coverage: true | |
- name: "ubuntu-py312" | |
python: "3.12" | |
os: ubuntu-latest | |
tox_env: "py312" | |
use_coverage: true | |
- name: "ubuntu-py313" | |
python: "3.13" | |
os: ubuntu-latest | |
tox_env: "py313" | |
use_coverage: true | |
- name: "ubuntu-pypy3" | |
python: "pypy3.9" | |
os: ubuntu-latest | |
tox_env: "pypy3" | |
use_coverage: true | |
- name: "ubuntu-benchmark" | |
python: "3.8" | |
os: ubuntu-latest | |
tox_env: "benchmark" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
allow-prereleases: true | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
python -m pip install tox coverage | |
- name: Test without coverage | |
if: "! matrix.use_coverage" | |
run: "tox -e ${{ matrix.tox_env }}" | |
- name: Test with coverage | |
if: "matrix.use_coverage" | |
run: "tox -e ${{ matrix.tox_env }}-coverage" | |
- name: Upload coverage | |
if: matrix.use_coverage && github.repository == 'pytest-dev/pluggy' | |
uses: codecov/codecov-action@v4 | |
continue-on-error: true | |
with: | |
fail_ci_if_error: true | |
files: ./coverage.xml | |
verbose: true | |
deploy: | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && github.repository == 'pytest-dev/pluggy' | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade build | |
- name: Build package | |
run: python -m build --sdist --wheel --outdir dist/ | |
- name: Publish package | |
uses: pypa/[email protected] | |
with: | |
attestations: true |