We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd6960b commit 90c98c8Copy full SHA for 90c98c8
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,17 @@
1
+# from: https://github.com/marketplace/actions/link-checker
2
+
3
+name: Link Check on README.md
4
5
+on: push
6
+jobs:
7
+ linkChecker:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Link Checker
12
+ id: lc
13
+ uses: peter-evans/link-checker@v1
14
+ with:
15
+ args: -v -d . -x http://creativecommons.org/licenses README.md
16
+ - name: Fail if there were link errors
17
+ run: exit ${{ steps.lc.outputs.exit_code }}
0 commit comments