File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,11 +154,11 @@ jobs:
154
154
${{ env.cache-name }}-${{ runner.os }}-${{ matrix.ghc }}-
155
155
${{ env.cache-name }}-${{ runner.os }}-
156
156
157
- - if : ! steps.compiled-deps.outputs.cache-hit
157
+ - if : ( ! steps.compiled-deps.outputs.cache-hit)
158
158
run : |
159
159
cabal update
160
160
161
- - if : ! steps.compiled-deps.outputs.cache-hit
161
+ - if : ( ! steps.compiled-deps.outputs.cache-hit)
162
162
name : Download all sources
163
163
run : |
164
164
cabal $cabalBuild --only-download
@@ -168,7 +168,7 @@ jobs:
168
168
# but to cache what can be cached, so step is fault tolerant & would always succseed.
169
169
# 2021-12-11: NOTE: Building all targets, since
170
170
# current Cabal does not allow `all --enable-tests --enable-benchmarks --only-dependencies`
171
- - if : ! steps.compiled-deps.outputs.cache-hit
171
+ - if : ( ! steps.compiled-deps.outputs.cache-hit)
172
172
name : Build all targets; try 3 times
173
173
continue-on-error : true
174
174
run : |
You can’t perform that action at this time.
0 commit comments