Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/update-lint-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:

jobs:
update-translation:
update:
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
fail-fast: false
matrix:
version: [3.14, 3.13, 3.12, 3.11]
needs: ['update-translation']
needs: ['update']
continue-on-error: true
steps:
- uses: actions/setup-python@master
Expand All @@ -88,14 +88,14 @@ jobs:
- uses: rffontenelle/[email protected]
- run: sphinx-lint

build-translation:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [3.14, 3.13, 3.12, 3.11, '3.10', 3.9, 3.8]
version: [3.14, 3.13, 3.12, 3.11, '3.10', 3.9]
format: [html, latex, epub]
needs: ['update-translation']
needs: ['update']
steps:
- uses: actions/setup-python@master
with:
Expand Down Expand Up @@ -125,8 +125,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [3.14, 3.13, 3.12, 3.11, '3.10', 3.9, 3.8]
needs: ['build-translation']
version: [3.14, 3.13, 3.12, 3.11, '3.10', 3.9]
needs: ['build']
steps:
- uses: actions/download-artifact@master
with:
Expand All @@ -144,7 +144,7 @@ jobs:
strategy:
matrix:
version: [3.14]
needs: ['build-translation']
needs: ['build']
continue-on-error: true
steps:
- uses: actions/download-artifact@master
Expand Down
Loading