docs: Update test coverage documentation to 80% and 160+ tests #1
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: Documentation Check | |
| on: | |
| push: | |
| branches: [main, master] | |
| paths: | |
| - 'docs/**' | |
| - '*.md' | |
| - 'README*.md' | |
| - 'CONTRIBUTING.md' | |
| pull_request: | |
| branches: [main, master] | |
| paths: | |
| - 'docs/**' | |
| - '*.md' | |
| - 'README*.md' | |
| - 'CONTRIBUTING.md' | |
| workflow_dispatch: | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Check broken links | |
| uses: lycheeverse/lychee-action@v1 | |
| with: | |
| args: '--accept 200,403,429 --exclude-mail --exclude-private --exclude-localhost --exclude-file .lycheeignore **/*.md' | |
| fail: true | |
| - name: Validate markdown | |
| uses: DavidAnson/markdownlint-cli2-action@v15 | |
| with: | |
| globs: '**/*.md' |