Skip to content

Run the test suite on push and pull request #1

Run the test suite on push and pull request

Run the test suite on push and pull request #1

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- run: pip install -e . pytest
- run: pytest -q