Skip to content

🌐 Check URLs

🌐 Check URLs #2139

Workflow file for this run

name: 🌐 Check URLs
on:
push:
pull_request:
schedule:
# Every Friday at 15:35 (UTC).
# URLs can decay over time. Setting up a schedule makes it possible to be warned
# about dead links as soon as possible.
- cron: "35 15 * * FRI"
jobs:
check-urls:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Check link validity
uses: lycheeverse/[email protected]
- name: Fail if there were link errors
run: exit ${{ steps.lc.outputs.exit_code }}