File tree Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Original file line number Diff line number Diff line change 25
25
strategy :
26
26
fail-fast : false
27
27
matrix :
28
- # Run all supported OS for one Python version, then add a few extra scenarios
28
+ # Run all supported OS for one Python version.
29
+ # The test additional Python versions on Linux only.
29
30
os : [ubuntu-latest, macos-latest, windows-latest]
30
31
python-version : ['3.12']
31
32
toxenv : [py312-test]
75
76
76
77
- name : Execute notebooks as testing
77
78
run : tox -e py311-buildhtml
79
+
80
+ pixi_test :
81
+ name : ${{ matrix.os }} ${{ matrix.name }}
82
+ runs-on : ${{ matrix.os }}
83
+ strategy :
84
+ fail-fast : false
85
+ matrix :
86
+ # Run all supported OS for one Python version, then add a few extra scenarios
87
+ os : [ubuntu-latest, macos-latest, windows-latest]
88
+ python-version : ['3.12']
89
+ toxenv : [py312-test]
90
+ name : ['with Python 3.12',]
91
+ include :
92
+ - python-version : ' 3.10'
93
+ toxenv : py310-test-oldestdeps
94
+ name : with Python 3.10 and oldest versioned dependencies
95
+ os : ubuntu-latest
96
+
97
+ - python-version : ' 3.13'
98
+ toxenv : py313-test-devdeps
99
+ name : with Python 3.13 and developer versioned dependencies
100
+ os : ubuntu-latest
101
+
102
+ steps :
103
+ - uses : actions/checkout@v4
104
+ - name : Set up Python ${{ matrix.python-version }}
105
+
106
+ - name : Setup pixi
107
+ uses :
prefix-dev/[email protected]
108
+
109
+ - name : Test all files
110
+ run : pixi run ./test.sh --all
You can’t perform that action at this time.
0 commit comments