Skip to content

Commit

Permalink
Run only on the latest version of Python on Windows
Browse files Browse the repository at this point in the history
No need for extra testing on Windows, the tests with Python < 3.12
are not supporting COVERAGE_CORE=sysmon and are failing.
  • Loading branch information
enzbang committed Jan 20, 2025
1 parent aeb467c commit 768c46c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python: ["3.9", "3.10", "3.11", "3.12"]
python: ["3.12"]
include:
- os: ubuntu-latest
python: "3.9"
- os: ubuntu-latest
python: "3.10"
- os: ubuntu-latest
python: "3.11"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 768c46c

Please sign in to comment.