@@ -17,7 +17,7 @@ concurrency:
17
17
18
18
jobs :
19
19
tox_test :
20
- name : ${{ matrix.os }} ${{ matrix.name }}
20
+ name : tox on ${{ matrix.os }} with ${{ matrix.name }}
21
21
runs-on : ${{ matrix.os }}
22
22
strategy :
23
23
fail-fast : false
@@ -27,17 +27,17 @@ jobs:
27
27
os : [ubuntu-latest, macos-latest, windows-latest]
28
28
python-version : ['3.12']
29
29
toxenv : [py312-test]
30
- name : ['with Python 3.12',]
30
+ name : ['Python 3.12',]
31
31
32
32
include :
33
33
- python-version : ' 3.11'
34
34
toxenv : py311-test-oldestdeps
35
- name : with Python 3.11 and oldest versioned dependencies
35
+ name : Python 3.11 and oldest versioned dependencies
36
36
os : ubuntu-latest
37
37
38
38
- python-version : ' 3.13'
39
39
toxenv : py313-test-devdeps
40
- name : with Python 3.13 and developer versioned dependencies
40
+ name : Python 3.13 and developer versioned dependencies
41
41
os : ubuntu-latest
42
42
43
43
steps :
@@ -55,24 +55,24 @@ jobs:
55
55
run : tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
56
56
57
57
tox_build :
58
- name : Buildhtml testing
58
+ name : Build static site with tox
59
59
runs-on : ubuntu-latest
60
60
steps :
61
61
- uses : actions/checkout@v4
62
62
63
63
- name : Setup Python
64
64
uses : actions/setup-python@v5
65
65
with :
66
- python-version : ' 3.11 '
66
+ python-version : ' 3.12 '
67
67
68
68
- name : Install dependencies
69
69
run : python -m pip install --upgrade tox
70
70
71
- - name : Execute notebooks as testing
72
- run : tox -e py311 -buildhtml
71
+ - name : Build static site
72
+ run : tox -e py312 -buildhtml
73
73
74
74
pixi_test :
75
- name : ${{ matrix.os }} with ${{ matrix.environment}}
75
+ name : pixi on ${{ matrix.os }} with ${{ matrix.environment}}
76
76
runs-on : ${{ matrix.os }}
77
77
strategy :
78
78
fail-fast : false
0 commit comments