Lychee link checker #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Lychee link checker | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
codespell: | |
name: Lychee link checker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@v1 | |
with: | |
# Check all markdown, html and reStructuredText files in repo (default) | |
args: --base . --verbose --no-progress './**/*.md' './**/*.html' './**/*.rst' |