We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1777553 commit 3ea7c7fCopy full SHA for 3ea7c7f
.github/workflows/cffconvert.yml
@@ -0,0 +1,33 @@
1
+name: cffconvert
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'master'
7
+ - 'release-*'
8
+ paths:
9
+ - CITATION.cff
10
+ pull_request:
11
12
13
14
15
16
17
+permissions:
18
+ contents: read
19
20
+jobs:
21
+ validate:
22
+ name: "validate"
23
+ runs-on: ubuntu-latest
24
+ steps:
25
+ - name: Check out a copy of the repository
26
+ uses: actions/checkout@v2
27
+ with:
28
+ persist-credentials: false
29
30
+ - name: Check whether the citation metadata from CITATION.cff is valid
31
+ uses: citation-file-format/[email protected]
32
33
+ args: "--validate"
0 commit comments