diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d6edb919..49544718 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,6 +9,10 @@ on: pull_request: branches: ["main"] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: pytest: name: py${{ matrix.python-version }} on ${{ matrix.os }} @@ -19,6 +23,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] + fail-fast: false # to not fail all combinations if just one fails steps: - uses: actions/checkout@v5