99 workflow_dispatch :
1010
1111jobs :
12- update-translation :
12+ update :
1313 runs-on : ubuntu-latest
1414 strategy :
1515 fail-fast : false
7171 fail-fast : false
7272 matrix :
7373 version : [3.14, 3.13, 3.12, 3.11]
74- needs : ['update-translation ']
74+ needs : ['update']
7575 continue-on-error : true
7676 steps :
7777 - uses : actions/setup-python@master
@@ -84,14 +84,14 @@ jobs:
8484 -
uses :
rffontenelle/[email protected] 8585 - run : sphinx-lint
8686
87- build-translation :
87+ build :
8888 runs-on : ubuntu-latest
8989 strategy :
9090 fail-fast : false
9191 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]
9393 format : [html, latex, epub]
94- needs : ['update-translation ']
94+ needs : ['update']
9595 steps :
9696 - uses : actions/setup-python@master
9797 with :
@@ -121,8 +121,8 @@ jobs:
121121 runs-on : ubuntu-latest
122122 strategy :
123123 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']
126126 steps :
127127 - uses : actions/download-artifact@master
128128 with :
@@ -140,7 +140,7 @@ jobs:
140140 strategy :
141141 matrix :
142142 version : [3.14]
143- needs : ['build-translation ']
143+ needs : ['build']
144144 continue-on-error : true
145145 steps :
146146 - uses : actions/setup-python@v5
0 commit comments