Skip to content

Commit a7dba51

Browse files
committed
Expand test matrix
1 parent a6b237d commit a7dba51

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/run_tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,16 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
os: [ubuntu-latest]
17+
python-version: ["3.12", "3.13"]
18+
os: [ubuntu-latest, macOS-latest, windows-latest]
1819
steps:
1920
- name: Checkout code
2021
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21-
- name: Set up Python
22+
- name: Set up Python ${{ matrix.python-version }}
2223
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
2324
with:
24-
python-version: '3.13'
25+
python-version: ${{ matrix.python-version }}
26+
cache: 'pip'
2527
- name: Install and build
2628
run: python -m pip install .[test]
2729
- name: Run tests

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ repos:
3232
hooks:
3333
# Run the linter.
3434
- id: ruff
35-
args: [--fix]
35+
args: [--fix, --show-fixes]
3636

3737
- repo: https://github.com/psf/black
3838
rev: 25.1.0

0 commit comments

Comments
 (0)