about summary refs log tree commit diff
path: root/.github/workflows
diff options
context:
space:
mode:
authorPhilipp Krones <hello@philkrones.com>2023-05-05 17:45:49 +0200
committerPhilipp Krones <hello@philkrones.com>2023-05-05 17:45:49 +0200
commit7e9abb311df2ecc61ea294f98a6eda03612178ef (patch)
tree0df45dc80cc4509473cb8a1d49ec16be50670f1c /.github/workflows
parent8518391e72e46d0a7886f582145793332055ab90 (diff)
Merge commit '371120bdbf58a331db5dcfb2d9cddc040f486de8' into clippyup
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/remark.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/remark.yml b/.github/workflows/remark.yml
index 116058b7c75..0bc2f49f5e9 100644
--- a/.github/workflows/remark.yml
+++ b/.github/workflows/remark.yml
@@ -36,6 +36,12 @@ jobs:
     - name: Check *.md files
       run: git ls-files -z '*.md' | xargs -0 -n 1 -I {} ./node_modules/.bin/remark {} -u lint -f > /dev/null
 
+    - name: Linkcheck book
+      run: |
+        rustup toolchain install nightly --component rust-docs
+        curl https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh -o linkcheck.sh
+        sh linkcheck.sh clippy --path ./book
+        
     - name: Build mdbook
       run: mdbook build book