Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,17 +87,29 @@ jobs:

strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
os: ["ubuntu-latest"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
resolution: ["highest"]
pre-commit: [true]
pytest: [true]
include:
# Min-dependency run on Linux
- os: "ubuntu-latest"
python-version: "3.10"
resolution: "lowest-direct"
pre-commit: false
pytest: true
# Cross-platform spot-checks on latest Python only (cost-reduced from full matrix)
- os: "windows-latest"
python-version: "3.13"
resolution: "highest"
pre-commit: false
pytest: true
- os: "macos-latest"
python-version: "3.13"
resolution: "highest"
pre-commit: false
pytest: true

code-analysis:
name: Analyse Code Quality
Expand Down Expand Up @@ -136,3 +148,4 @@ jobs:
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ vars.SONAR_HOST_URL }}

Loading