File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 85
85
# Unit tests only on Linux/Python 3.12
86
86
runs-on : ' ubuntu-latest'
87
87
needs : ['cache-test-data']
88
+ strategy :
89
+ matrix :
90
+ python-version : ['3.10', '3.11', '3.12']
88
91
steps :
89
92
- uses : actions/checkout@v4
90
93
with :
93
96
- name : Set up Python ${{ matrix.python-version }}
94
97
uses : actions/setup-python@v5
95
98
with :
96
- python-version : ' 3.12 '
99
+ python-version : ${{ matrix.python-version }}
97
100
- name : Install the latest version of uv
98
101
uses : astral-sh/setup-uv@v5
99
102
- name : Install ANTs
Original file line number Diff line number Diff line change 2
2
requires =
3
3
tox>=4
4
4
envlist =
5
- py312, notebooks
5
+ py3{10,11,12,13}
6
+ notebooks
6
7
skip_missing_interpreters = true
7
8
8
9
# Configuration that allows us to split tests across GitHub runners effectively
9
10
[gh-actions]
10
11
python =
12
+ 3.10: py310
13
+ 3.11: py311
11
14
3.12: py312, notebooks
15
+ 3.13: py313
12
16
13
17
[testenv]
14
18
description = Pytest with coverage
You can’t perform that action at this time.
0 commit comments