Skip to content

Link checker

Link checker #337

Workflow file for this run

name: Link checker
# Only runs when there are markdown changes and intermittently
# Check links across markdown files
on:
pull_request:
branches:
- master
paths:
- '**.md'
schedule:
- cron: "0 0 1 * *"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Link checker
id: lychee
uses: lycheeverse/lychee-action@v1.8.0
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
fail: true
args: -v '**/*.md'