Bump coverage from 7.10.6 to 7.12.0 #53
This file contains hidden or 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: Markdown Link Validator | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main, master ] | |
| jobs: | |
| linkChecker: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Check links with lychee | |
| # See https://github.com/lycheeverse/lychee-action | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| # Check all markdown and reStructuredText files | |
| args: >- | |
| --verbose | |
| --no-progress | |
| --max-concurrency 12 | |
| --max-retries 3 | |
| --retry-wait-time 4 | |
| --accept 200,206,403,429 | |
| --exclude-path "docs/get_started/legacy_licenses/gpl-3.0.rst" | |
| "**/*.md" "**/*.rst" | |
| # Fail the build on any broken link | |
| fail: true | |
| env: | |
| # Exclude localhost and badges | |
| LY_CHEE_EXCLUDE: "http://localhost,https://localhost,https://127.0.0.1,https://img.shields.io" |