File tree Expand file tree Collapse file tree 1 file changed +20
-3
lines changed
Expand file tree Collapse file tree 1 file changed +20
-3
lines changed Original file line number Diff line number Diff line change 2525 strategy :
2626 fail-fast : false
2727 matrix :
28- os : [ ubuntu, windows, macos ]
29- release : [ stable, nightly ]
28+ include :
29+ - os : ubuntu
30+ release : stable
31+ python : 3.8
32+ - os : ubuntu
33+ release : nightly
34+ python : 3.11
35+ - os : windows
36+ release : stable
37+ python : 3.9
38+ - os : windows
39+ release : nightly
40+ python : 3.12
41+ - os : macos
42+ release : stable
43+ python : 3.10
44+ - os : macos
45+ release : nightly
46+ python : 3.13
3047 runs-on : ${{ format('{0}-latest', matrix.os) }}
3148 steps :
3249 - name : Checkout GitHub repo
4764 - name : Set up Python
4865 uses : actions/setup-python@v5
4966 with :
50- python-version : 3.8
67+ python-version : ${{ matrix.python }}
5168 - name : Install dependencies nightly non-Windows
5269 if : matrix.release == 'nightly' && matrix.os != 'windows'
5370 run : |
You can’t perform that action at this time.
0 commit comments