Skip to content

Add action to check links #2

Add action to check links

Add action to check links #2

Workflow file for this run

name: "Check markdown links"
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build-and-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build
uses: actions/jekyll-build-pages@v1
- name: Check links
uses: lycheeverse/[email protected]
with:
# excluded # and ## as they used in the gallery
args: >
--no-progress --include-fragments --offline '_site'
--exclude '##?$'