name: tests on: push: branches: ["**"] pull_request: branches: ["**"] permissions: contents: read jobs: test: name: test (python ${{ matrix.python-version }}) runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: ["3.10", "3.11", "3.12"] steps: - name: Checkout uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: pip - name: Install with dev extras run: make install-dev - name: Lint run: make lint - name: Run tests run: make test