diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml new file mode 100644 index 000000000..1a4f522c9 --- /dev/null +++ b/.github/workflows/linkcheck.yml @@ -0,0 +1,19 @@ +name: Check links + +on: [push, pull_request] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + linkcheck: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Check links + id: lychee + uses: lycheeverse/lychee-action@v2 + with: + fail: true