Skip to content

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

[pre-commit.ci] pre-commit autoupdate

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

Workflow file for this run

name: test
on:
push:
branches:
- main
- "test-me-*"
pull_request:
# Cancel running jobs for the same workflow and branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test
run: |
tox -e py