Skip to content

Commit e64e117

Browse files
committed
Fix invalid CI config
1 parent e1e3085 commit e64e117

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
- uses: ./.github/actions/setup-build
9999
with:
100100
ghc: ${{ matrix.ghc }}
101-
os: ${{ runner.os }}
101+
os: ${{ runner.os }}
102102

103103
- name: Build
104104
run: cabal build all
@@ -141,7 +141,8 @@ jobs:
141141
name: Test hls-refactor-plugin
142142
run: cabal test hls-refactor-plugin-tests || cabal test hls-refactor-plugin-tests
143143

144-
- if: matrix.test && matrix.ghc != '9.10' -- TODO enable when it supports 9.10
144+
# TODO enable when it supports 9.10
145+
- if: matrix.test && matrix.ghc != '9.10'
145146
name: Test hls-floskell-plugin
146147
run: cabal test hls-floskell-plugin-tests || cabal test hls-floskell-plugin-tests
147148

@@ -157,23 +158,26 @@ jobs:
157158
name: Test hls-eval-plugin
158159
run: cabal test hls-eval-plugin-tests || cabal test hls-eval-plugin-tests
159160

160-
- if: matrix.test && matrix.ghc != '9.10' -- TODO enable when it supports 9.10
161+
# TODO enable when it supports 9.10
162+
- if: matrix.test && matrix.ghc != '9.10'
161163
name: Test hls-splice-plugin
162164
run: cabal test hls-splice-plugin-tests || cabal test hls-splice-plugin-tests
163165

164166
- if: matrix.test && matrix.ghc != '9.2'
165167
name: Test hls-stan-plugin
166168
run: cabal test hls-stan-plugin-tests || cabal test hls-stan-plugin-tests
167169

168-
- if: matrix.test && matrix.ghc != '9.10' -- TODO enable when it supports 9.10
170+
# TODO enable when it supports 9.10
171+
- if: matrix.test && matrix.ghc != '9.10'
169172
name: Test hls-stylish-haskell-plugin
170173
run: cabal test hls-stylish-haskell-plugin-tests || cabal test hls-stylish-haskell-plugin-tests
171174

172175
- if: matrix.test
173176
name: Test hls-ormolu-plugin
174177
run: cabal test hls-ormolu-plugin-tests || cabal test hls-ormolu-plugin-tests
175178

176-
- if: matrix.test && matrix.ghc != '9.10' -- TODO enable when it supports 9.10
179+
# TODO enable when it supports 9.10
180+
- if: matrix.test && matrix.ghc != '9.10'
177181
name: Test hls-fourmolu-plugin
178182
run: cabal test hls-fourmolu-plugin-tests || cabal test hls-fourmolu-plugin-tests
179183

@@ -189,7 +193,8 @@ jobs:
189193
name: Test hls-rename-plugin test suite
190194
run: cabal test hls-rename-plugin-tests || cabal test hls-rename-plugin-tests
191195

192-
- if: matrix.test && matrix.ghc != '9.10' -- TODO enable when it supports 9.10
196+
# TODO enable when it supports 9.10
197+
- if: matrix.test && matrix.ghc != '9.10'
193198
name: Test hls-hlint-plugin test suite
194199
run: cabal test hls-hlint-plugin-tests || cabal test hls-hlint-plugin-tests
195200

@@ -238,7 +243,8 @@ jobs:
238243
name: Test hls-cabal-plugin test suite
239244
run: cabal test hls-cabal-plugin-tests || cabal test hls-cabal-plugin-tests
240245

241-
- if: matrix.test && matrix.ghc != '9.10' -- TODO enable when it supports 9.10
246+
# TODO enable when it supports 9.10
247+
- if: matrix.test && matrix.ghc != '9.10'
242248
name: Test hls-retrie-plugin test suite
243249
run: cabal test hls-retrie-plugin-tests || cabal test hls-retrie-plugin-tests
244250

0 commit comments

Comments
 (0)