Skip to content

ci: .github: workflows: run build, test and release nightly #110

ci: .github: workflows: run build, test and release nightly

ci: .github: workflows: run build, test and release nightly #110

# Check links in Markdown files (docs, README, etc.)
name: Markdown link check
on:
workflow_call:
workflow_dispatch:
pull_request:
paths:
- '**.md'
permissions:
contents: read
jobs:
linkcheck:
name: Check Markdown links
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Lychee link checker
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2
with:
fail: true
# Don't fail on 403 (Forbidden), 429 (rate limit), or 200
args: --accept "200,403,429" --verbose --no-progress './**/*.md'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}