We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7d4736 commit fb3063cCopy full SHA for fb3063c
.github/workflows/linkcheck.yml
@@ -11,9 +11,17 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: actions/checkout@v1
+ - name: Checkout repository with submodules
15
+ uses: actions/checkout@v4
16
+ with:
17
+ submodules: recursive
18
+ fetch-depth: 0
19
+
20
+ - name: Initialize and update submodules
21
+ run: git submodule update --init --recursive
22
# This external action cares about all the sphinx stuff
- - uses: ammaraskar/[email protected]
23
+ - name: Build project
24
+ uses: ammaraskar/[email protected]
25
with:
26
build-command: "sphinx-build -b linkcheck source/ build/"
27
docs-folder: "docs/"
0 commit comments