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 22
22
strategy :
23
23
fail-fast : false
24
24
matrix :
25
- # Run all supported OS for one Python version, then add a few extra scenarios
25
+ # Run all supported OS for one Python version.
26
+ # The test additional Python versions on Linux only.
26
27
os : [ubuntu-latest, macos-latest, windows-latest]
27
28
python-version : ['3.12']
28
29
toxenv : [py312-test]
68
69
69
70
- name : Execute notebooks as testing
70
71
run : tox -e py311-buildhtml
72
+
73
+ pixi_test :
74
+ name : ${{ matrix.os }} ${{ matrix.name }}
75
+ runs-on : ${{ matrix.os }}
76
+ strategy :
77
+ fail-fast : false
78
+ matrix :
79
+ # Run all supported OS for one Python version, then add a few extra scenarios
80
+ os : [ubuntu-latest, macos-latest, windows-latest]
81
+ python-version : ['3.12']
82
+ toxenv : [py312-test]
83
+ name : ['with Python 3.12',]
84
+ include :
85
+ - python-version : ' 3.10'
86
+ toxenv : py310-test-oldestdeps
87
+ name : with Python 3.10 and oldest versioned dependencies
88
+ os : ubuntu-latest
89
+
90
+ - python-version : ' 3.13'
91
+ toxenv : py313-test-devdeps
92
+ name : with Python 3.13 and developer versioned dependencies
93
+ os : ubuntu-latest
94
+
95
+ steps :
96
+ - uses : actions/checkout@v4
97
+ - name : Set up Python ${{ matrix.python-version }}
98
+
99
+ - name : Setup pixi
100
+ uses : prefix-dev/setup-pixi@v0.8.1
101
+
102
+ - name : Test all files
103
+ run : pixi run ./test.sh --all
You can’t perform that action at this time.
0 commit comments