Skip to content

Commit e8ad139

Browse files
authored
Create check_links.yml
1 parent 8592eb9 commit e8ad139

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/check_links.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Check Markdown links
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
paths:
8+
- '**.md'
9+
pull_request:
10+
paths:
11+
- '**.md'
12+
13+
jobs:
14+
markdown-link-check:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@master
18+
- uses: gaurav-nelson/github-action-markdown-link-check@v1
19+
with:
20+
use-quiet-mode: 'yes'
21+
use-verbose-mode: 'yes'

0 commit comments

Comments
 (0)