Skip to content

[pre-commit.ci] pre-commit autoupdate #504

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #504

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run tox
run: pipx run tox -e py${{ matrix.python-version }}