3
3
name : CIFSyntaxandStyleCheck
4
4
5
5
# Controls when the action will run. Triggers the workflow on push or pull request
6
- # events but only for the master branch
6
+ # events but only for the main branch
7
7
on :
8
8
push :
9
- branches : [ master ]
9
+ branches : [ main ]
10
+ paths-ignore :
11
+ - ' .github/**'
12
+
10
13
pull_request :
11
- branches : [ master ]
12
- workflow_dispatch :
14
+ branches : [ main ]
15
+ paths-ignore :
16
+ - ' .github/**'
17
+ workflow_dispatch :
13
18
14
19
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
15
20
jobs :
21
26
steps :
22
27
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23
28
- name : checkout
24
- uses : actions/checkout@v2
25
-
29
+ uses : actions/checkout@v4
30
+
26
31
# Check syntax of all CIF files
27
32
- name : check_syntax
28
33
uses : COMCIFS/cif_syntax_check_action@master
@@ -32,18 +37,63 @@ jobs:
32
37
needs : syntax
33
38
steps :
34
39
- name : checkout
35
- uses : actions/checkout@v2
40
+ uses : actions/checkout@v4
36
41
37
42
- name : check_ddlm
38
43
uses : COMCIFS/dictionary_check_action@main
39
44
id : ddlm_check
40
45
layout :
41
46
runs-on : ubuntu-latest
42
- needs : ddlm
47
+ needs : syntax
48
+
43
49
steps :
44
- - name : checkout
45
- uses : actions/checkout@v2
46
-
47
- - name : check_layout
48
- uses : jamesrhester/cif_dic_layout_check_action@main
49
- id : layout_check
50
+ - name : Get the cache
51
+ uses : actions/cache@v4
52
+ id : cache
53
+ with :
54
+ path : ~/.julia
55
+ key : ${{ runner.os }}-julia-v2
56
+
57
+ - name : Install Julia
58
+ uses : julia-actions/setup-julia@v1
59
+ with :
60
+ version : ' 1.6'
61
+
62
+ - name : Install Julia packages
63
+ if : steps.cache.outputs.cache-hit != 'true'
64
+ run : |
65
+ julia -e 'import Pkg;Pkg.add("CrystalInfoFramework");Pkg.add("Lerche");Pkg.add("FilePaths");Pkg.add("ArgParse")'
66
+
67
+ - name : checkout
68
+ uses : actions/checkout@v4
69
+ with :
70
+ path : main
71
+ - name : checkout julia tools
72
+ uses : actions/checkout@v4
73
+ with :
74
+ repository : jamesrhester/julia_cif_tools
75
+ path : julia_cif_tools
76
+
77
+ - name : Checkout CIF master files
78
+ uses : actions/checkout@v4
79
+ with :
80
+ repository : COMCIFS/cif_core
81
+ path : cif_core
82
+ - name : Diagnostics
83
+ run : |
84
+ ls -a
85
+ pwd
86
+ which julia
87
+
88
+ - name : one_dict_layout
89
+ run : |
90
+ julia -e 'using Pkg; Pkg.status()'
91
+ for file in main/*.dic
92
+ do
93
+ echo "Checking $file"
94
+ julia -O0 ./julia_cif_tools/linter.jl -i $PWD/cif_core $file cif_core/ddl.dic
95
+ if [ $? != 0 ]
96
+ then
97
+ exit 1 ;
98
+ fi
99
+ done
0 commit comments