File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments