Skip to content

Merge pull request #18 from corticalstack/feat/08-09-foundry-hosted-c… #55

Merge pull request #18 from corticalstack/feat/08-09-foundry-hosted-c…

Merge pull request #18 from corticalstack/feat/08-09-foundry-hosted-c… #55

Workflow file for this run

name: Link check
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# Weekly Monday at 06:00 UTC — catches link rot in upstream docs
- cron: "0 6 * * 1"
permissions:
contents: read
issues: write
jobs:
lychee:
name: Check markdown + notebook links
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run lychee
uses: lycheeverse/lychee-action@v2
with:
args: >-
--no-progress
--cache
--max-cache-age 7d
--accept 200,206,429
--exclude-path .git
--exclude-path assets
--exclude-file .lycheeignore
'./**/*.md'
'./**/*.ipynb'
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}