File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212
1313jobs :
1414 call-workflow :
15+ strategy :
16+ matrix :
17+ version : ['3.12', '3.13', '3.14']
18+ os : ["ubuntu-latest", "windows-latest"]
1519 uses : ISISComputingGroup/reusable-workflows/.github/workflows/linters.yml@main
1620 with :
1721 compare-branch : origin/main
18- python-ver : ' 3.12'
22+ python-ver : ${{ matrix.version }}
23+ runs-on : ${{ matrix.runs-on }}
1924 tests :
20- runs-on : ubuntu-latest
25+ strategy :
26+ matrix :
27+ version : ['3.12', '3.13', '3.14']
28+ os : ["ubuntu-latest", "windows-latest"]
29+ runs-on : ${{ matrix.os }}
2130 steps :
2231 - uses : actions/checkout@v6
2332 - name : Install uv and set the python version
2433 uses : astral-sh/setup-uv@v7
2534 with :
26- python-version : " 3.12 "
35+ python-version : ${{ matrix.runs-on }}
2736 - name : Install dependencies
2837 run : uv sync --all-extras --dev
2938 - name : Test with pytest
You can’t perform that action at this time.
0 commit comments