File tree 3 files changed +40
-2
lines changed
3 files changed +40
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : validate CITATION.cff
2
+
3
+ on :
4
+ push :
5
+ branches : ['*']
6
+ paths :
7
+ - ' CITATION.cff'
8
+ - ' .github/workflows/validate_cff.yml'
9
+ pull_request :
10
+ branches : ['*']
11
+ paths :
12
+ - ' CITATION.cff'
13
+ - ' .github/workflows/validate_cff.yml'
14
+
15
+ jobs :
16
+
17
+ validate_cff :
18
+
19
+ runs-on : ubuntu-latest
20
+
21
+ steps :
22
+
23
+ - uses : actions/checkout@v3
24
+ with :
25
+ fetch-depth : 1
26
+
27
+ - name : Set up Python
28
+ uses : actions/setup-python@v3
29
+ with :
30
+ python-version : 3.9
31
+
32
+ - name : Install dependencies
33
+ run : |
34
+ python -m pip install --upgrade pip setuptools
35
+ pip3 install cffconvert
36
+
37
+ - name : Validate CITATION.cff
38
+ run : cffconvert --validate
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cff-version: 1.2.0
2
2
3
3
title : " CPP ROI"
4
4
5
- version : 0.2.0dev
5
+ version : 0.3.0
6
6
7
7
abstract : Set of Octave and Matlab functions, demos and scripts to help manage ROIs and to play nice with BIDS datasets.
8
8
Original file line number Diff line number Diff line change 1
- v0.2.0dev
1
+ v0.3.0
You can’t perform that action at this time.
0 commit comments