From 193238bb48425fe9a4d7a1ba08d38ab04e5e986d Mon Sep 17 00:00:00 2001 From: Christian Meusel Date: Mon, 31 May 2021 18:11:24 +0200 Subject: [PATCH] Remove exemption for print.html from link checking This is a remake of https://github.com/rust-embedded/discovery/pull/255 for the actual GitHub Actions. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ba8483ee..c0bb394ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,7 +85,7 @@ jobs: - name: Build book run: mkdir target && mdbook build - name: Check links - run: linkchecker --ignore-url "print.html" book + run: linkchecker book - name: Deploy book if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}