Skip to content

docs: add FOSSA badge to README #6

docs: add FOSSA badge to README

docs: add FOSSA badge to README #6

Workflow file for this run

name: Link checker
on:
push:
branches: [main]
paths:
- "**.md"
- "lychee.toml"
pull_request:
paths:
- "**.md"
- "lychee.toml"
schedule:
- cron: "0 6 * * 1"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: links-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
links:
name: Check links
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
persist-credentials: false
- name: Run lychee
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2
with:
args: --config lychee.toml '**/*.md'
fail: true