File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,22 @@ jobs:
12
12
- name : Install Rust
13
13
run : |
14
14
rustup set profile minimal
15
- rustup toolchain install nightly
15
+ rustup toolchain install nightly -c rust-docs
16
16
rustup default nightly
17
17
- name : Install mdbook
18
18
run : |
19
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
20
+ 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
21
echo "##[add-path]$(pwd)/bin"
22
22
- name : Report versions
23
23
run : |
24
24
rustup --version
25
25
rustc -Vv
26
26
mdbook --version
27
27
- name : Run tests
28
- run : mdbook test
28
+ run : mdbook test
29
+ - name : Check for broken links
30
+ run : |
31
+ curl -sSLo linkcheck.sh \
32
+ https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh
33
+ sh linkcheck.sh --all nomicon
You can’t perform that action at this time.
0 commit comments