File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -73,19 +73,28 @@ jobs:
73
73
74
74
test-cfg :
75
75
# if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/release**'
76
- name : CGDFG 1.6 - ubuntu-latest - x64
77
- runs-on : ubuntu-latest
76
+ name : w/ LGPL ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
77
+ runs-on : ${{ matrix.os }}
78
78
env :
79
79
JULIA_PKG_SERVER : " "
80
+ strategy :
81
+ fail-fast : false
82
+ matrix :
83
+ version :
84
+ - ' 1.6'
85
+ os :
86
+ - ubuntu-latest
87
+ arch :
88
+ - x64
80
89
steps :
81
90
- name : Checkout
82
91
uses : actions/checkout@v2
83
92
84
93
- name : Setup Julia
85
94
uses : julia-actions/setup-julia@v1
86
95
with :
87
- version : 1.6
88
- arch : x64
96
+ version : ${{ matrix.version }}
97
+ arch : ${{ matrix.arch }}
89
98
90
99
- name : Install neo4j
91
100
run : |
@@ -124,7 +133,7 @@ jobs:
124
133
125
134
- name : Run tests
126
135
env :
127
- IIF_TEST : true
136
+ IIF_TEST : false
128
137
DO_CGDFG_TESTS : true
129
138
DFG_USE_CGDFG : true
130
139
uses : julia-actions/julia-runtest@latest
You can’t perform that action at this time.
0 commit comments