name: CI on: push: branches: [main] pull_request: jobs: test: name: pytest (${{ matrix.os }}, py${{ matrix.python-version }}) runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install package run: | python -m pip install --upgrade pip python -m pip install -e . - name: Install test tooling run: python -m pip install pytest - name: Run test suite run: python -m pytest -q