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 fd74cff commit 81409d0Copy full SHA for 81409d0
.github/workflows/website-checks.yml
@@ -0,0 +1,21 @@
1
+---
2
+name: Website tests
3
+
4
+on:
5
+ pull_request: # To be removed
6
+ schedule:
7
+ - cron: "0 1 * * 1" # every Monday at 1am
8
+ workflow_dispatch:
9
10
+jobs:
11
+ links-check:
12
+ name: Links check using linkchecker
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: Install linkchecker
17
+ run: |
18
+ pipx install linkchecker
19
+ - name: Analysing the links of the website
20
21
+ linkchecker --check-extern --config=.linkcheckerrc --no-status https://kokkos.org
.linkcheckerrc
@@ -0,0 +1,2 @@
+[filtering]
+ignorewarnings=http-redirected
0 commit comments