Skip to content

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

[pre-commit.ci] pre-commit autoupdate

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

Workflow file for this run

name: test
on:
push:
pull_request:
workflow_call:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Test
run: |
tox -e py