9
9
workflow_dispatch :
10
10
11
11
jobs :
12
- update-translation :
12
+ update :
13
13
runs-on : ubuntu-latest
14
14
strategy :
15
15
fail-fast : false
71
71
fail-fast : false
72
72
matrix :
73
73
version : [3.14, 3.13, 3.12, 3.11]
74
- needs : ['update-translation ']
74
+ needs : ['update']
75
75
continue-on-error : true
76
76
steps :
77
77
- uses : actions/setup-python@master
@@ -84,14 +84,14 @@ jobs:
84
84
- uses : rffontenelle/sphinx-lint-problem-matcher@v1.0.0
85
85
- run : sphinx-lint
86
86
87
- build-translation :
87
+ build :
88
88
runs-on : ubuntu-latest
89
89
strategy :
90
90
fail-fast : false
91
91
matrix :
92
- version : [3.14, 3.13, 3.12, 3.11, '3.10', 3.9, 3.8 ]
92
+ version : [3.14, 3.13, 3.12, 3.11, '3.10', 3.9]
93
93
format : [html, latex, epub]
94
- needs : ['update-translation ']
94
+ needs : ['update']
95
95
steps :
96
96
- uses : actions/setup-python@master
97
97
with :
@@ -121,8 +121,8 @@ jobs:
121
121
runs-on : ubuntu-latest
122
122
strategy :
123
123
matrix :
124
- version : [3.14, 3.13, 3.12, 3.11, '3.10', 3.9, 3.8 ]
125
- needs : ['build-translation ']
124
+ version : [3.14, 3.13, 3.12, 3.11, '3.10', 3.9]
125
+ needs : ['build']
126
126
steps :
127
127
- uses : actions/download-artifact@master
128
128
with :
@@ -140,7 +140,7 @@ jobs:
140
140
strategy :
141
141
matrix :
142
142
version : [3.14]
143
- needs : ['build-translation ']
143
+ needs : ['build']
144
144
continue-on-error : true
145
145
steps :
146
146
- uses : actions/setup-python@v5
0 commit comments