We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1264395 commit 740fea0Copy full SHA for 740fea0
1 file changed
.github/workflows/links.yml
@@ -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