diff options
Diffstat (limited to '.github/workflows/uvim-link-check.yml')
| -rw-r--r-- | .github/workflows/uvim-link-check.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/uvim-link-check.yml b/.github/workflows/uvim-link-check.yml new file mode 100644 index 0000000000..bf0190946a --- /dev/null +++ b/.github/workflows/uvim-link-check.yml @@ -0,0 +1,16 @@ +name: "uvim: Check Links" + +on: + workflow_dispatch: + schedule: + - cron: '0 3 * * 0' + +jobs: + lychee: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - name: Run Lychee + uses: lycheeverse/lychee-action@v2 + with: + args: --verbose --config uvim/ci/lychee.toml uvim/ |
