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 ff216eb commit 3b8d744Copy full SHA for 3b8d744
.github/workflows/main.yml
@@ -196,11 +196,11 @@ jobs:
196
env:
197
RUSTDOCFLAGS: -D warnings
198
- run: cd src/doc && mdbook build --dest-dir ../../target/doc
199
- - run: |
200
- cd src/doc
201
- curl -sSLo linkcheck.sh \
202
- https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh
203
- sh linkcheck.sh --all cargo
+ - name: Run linkchecker.sh
+ run: |
+ cd target
+ curl -sSLO https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh
+ sh linkcheck.sh --all --path ../src/doc cargo
204
205
success:
206
permissions:
0 commit comments