Skip to content

Commit 32cf01f

Browse files
committed
Remove ghc-lib from test conditions
1 parent e53ebf1 commit 32cf01f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@ jobs:
9696
run: cabal build || cabal build || cabal build
9797

9898
- name: Test ghcide
99-
if: ${{ !matrix.ghc-lib && matrix.test }}
99+
if: ${{ matrix.test }}
100100
# run the tests without parallelism to avoid running out of memory
101101
run: cabal test ghcide --test-options="-j1 --rerun-update" || cabal test ghcide --test-options="-j1 --rerun" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test ghcide --test-options="-j1 --rerun"
102102

103103
- name: Test func-test suite
104-
if: ${{ !matrix.ghc-lib && matrix.test }}
104+
if: ${{ matrix.test }}
105105
env:
106106
HLS_TEST_EXE: hls
107107
HLS_WRAPPER_TEST_EXE: hls-wrapper
@@ -111,7 +111,7 @@ jobs:
111111
run: cabal test func-test --test-options="-j1 --rerun --rerun-update" || cabal test func-test --test-options="-j1 --rerun" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test func-test --test-options="-j1 --rerun"
112112

113113
- name: Test wrapper-test suite
114-
if: ${{ !matrix.ghc-lib && matrix.test }}
114+
if: ${{ matrix.test }}
115115
env:
116116
HLS_TEST_EXE: hls
117117
HLS_WRAPPER_TEST_EXE: hls-wrapper

0 commit comments

Comments
 (0)