From 9bebe80dda25fe364786b6d27dae423af22b2c1e Mon Sep 17 00:00:00 2001 From: Airscript Date: Tue, 9 Jan 2024 23:07:52 +0100 Subject: [PATCH] ci: add linker workflow to check against dead links --- .github/workflows/linker.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/linker.yml diff --git a/.github/workflows/linker.yml b/.github/workflows/linker.yml new file mode 100644 index 0000000..5e06cc2 --- /dev/null +++ b/.github/workflows/linker.yml @@ -0,0 +1,21 @@ +name: linker + +on: + push: + branches: [main] + + pull_request: + branches: [main] + +jobs: + link: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Link Checker + uses: lycheeverse/lychee-action@v1.2.0 + + with: + fail: true \ No newline at end of file