-
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (28 loc) · 666 Bytes
/
docs.yml
File metadata and controls
31 lines (28 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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-loopback --exclude-file .lycheeignore **/*.md'
fail: true