Skip to content

Commit 740fea0

Browse files
committed
add link checker job
1 parent 1264395 commit 740fea0

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/links.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on: push
2+
jobs:
3+
linkChecker:
4+
runs-on: ubuntu-latest
5+
steps:
6+
- uses: actions/checkout@v2
7+
- name: Link Checker
8+
id: lc
9+
uses: peter-evans/link-checker@v1
10+
with:
11+
args: -v -r *
12+
- name: Fail if there were link errors
13+
run: exit ${{ steps.lc.outputs.exit_code }}

0 commit comments

Comments
 (0)