diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 7f0d8a29..2f189a1d 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -4,9 +4,11 @@ on: [push] jobs: build: runs-on: ubuntu-latest + if: github.event.pull_request.draft == false strategy: matrix: - python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13] + python-version: ['3.10', 3.11, 3.12, 3.13, 3.14] + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -52,5 +54,5 @@ jobs: - uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos - if: success() && matrix.python-version == 3.13 + if: success() && matrix.python-version == 3.14