Skip to content

Commit c48d5e3

Browse files
committed
add validation workflow for CITATION.cff
1 parent 3732425 commit c48d5e3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/validate-cff.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on:
2+
push:
3+
paths:
4+
- CITATION.cff
5+
workflow_dispatch:
6+
7+
name: CITATION.cff
8+
jobs:
9+
Validate-CITATION-cff:
10+
runs-on: ubuntu-latest
11+
name: Validate CITATION.cff
12+
env:
13+
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
19+
- name: Validate CITATION.cff
20+
uses: dieghernan/cff-validator@main

0 commit comments

Comments
 (0)