We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f7cb6a commit 5b8fed8Copy full SHA for 5b8fed8
.github/workflows/main.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Install mdbook
18
run: |
19
mkdir bin
20
- curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.3.4/mdbook-v0.3.4-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
+ curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.3.5/mdbook-v0.3.5-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
21
echo "##[add-path]$(pwd)/bin"
22
- name: Report versions
23
@@ -29,4 +29,7 @@ jobs:
29
- name: Check for unstable features
30
run: (cd stable-check && cargo run -- ../src)
31
- name: Check for broken links
32
- run: tests/linkcheck.sh
+ run: |
33
+ curl -sSLo linkcheck.sh \
34
+ https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh
35
+ sh linkcheck.sh --all reference
tests/linkcheck.sh
0 commit comments