Skip to content

Commit a382815

Browse files
committed
Add a link checker
1 parent fd74cff commit a382815

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/website-checks.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
- name: Install linkchecker
16+
run: |
17+
pipx install linkchecker
18+
- name: Analysing the links of the website
19+
run: |
20+
linkchecker https://kokkos.org

0 commit comments

Comments
 (0)