Skip to content

docs: Update test coverage documentation to 80% and 160+ tests #1

docs: Update test coverage documentation to 80% and 160+ tests

docs: Update test coverage documentation to 80% and 160+ tests #1

Workflow file for this run

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'