Skip to content

Commit 7288a54

Browse files
committed
Add CI to check links in README.md
1 parent 397e259 commit 7288a54

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.github/workflows/checkCITATION.cff.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
timeout-minutes: 5
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- name: Checkout repository
18+
uses: actions/checkout@v5
1819
with:
1920
fetch-depth: 5
2021
- name: Validate CITATION.cff
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: README.md
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "33 3 * * 7"
7+
8+
jobs:
9+
check:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v5
14+
with:
15+
fetch-depth: 5
16+
- name: Check links in README.md
17+
uses: gaurav-nelson/github-action-markdown-link-check@v1
18+
with:
19+
file-path: './README.md'

0 commit comments

Comments
 (0)