From 6de3c88da528e103b49a6b62f7db2ab119b0ff04 Mon Sep 17 00:00:00 2001 From: vil02 Date: Sun, 24 Mar 2024 20:31:34 +0100 Subject: [PATCH] chore: add `url_check.yml` --- .github/workflows/url_check.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/url_check.yml diff --git a/.github/workflows/url_check.yml b/.github/workflows/url_check.yml new file mode 100644 index 00000000..1f640e15 --- /dev/null +++ b/.github/workflows/url_check.yml @@ -0,0 +1,30 @@ +--- +name: url_check + +'on': + workflow_dispatch: + push: + branches: + - master + pull_request: + schedule: + - cron: '43 5 * * TUE' + +jobs: + run_lychee: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Check links + id: link_check + uses: lycheeverse/lychee-action@v1.9.3 + with: + args: > + --verbose + --no-progress + **/*.md + fail: true +...