Skip to content

Commit 42f82f4

Browse files
committed
Test citation file if changes
1 parent 01b85da commit 42f82f4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: '[test] validate citation file'
2+
3+
on:
4+
push:
5+
paths:
6+
- 'CITATION.cff'
7+
8+
jobs:
9+
check_maps_precompmesh:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Set up Python 3.10
14+
uses: actions/setup-python@v4
15+
with:
16+
python-version: '3.10'
17+
- name: Install cffconvert
18+
run: |
19+
pip install -U pip
20+
pip install cffconvert
21+
22+
- name: Validate CITATION.cff
23+
run: cffconvert --validate -i ./CITATION.cff

0 commit comments

Comments
 (0)