aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/haskell.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml
index d2ee6bfd7..0e2c02c65 100644
--- a/.github/workflows/haskell.yml
+++ b/.github/workflows/haskell.yml
@@ -18,11 +18,11 @@ jobs:
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
cabal v2-update
- cabal v2-build --dependencies-only --enable-tests
+ cabal v2-build --dependencies-only --enable-tests --disable-optimization
- name: Build
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
- cabal v2-build --enable-tests
+ cabal v2-build --enable-tests --disable-optimization
- name: Run tests
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
@@ -41,8 +41,8 @@ jobs:
- name: Install dependencies
run: |
stack update
- stack test --dependencies-only
+ stack test --dependencies-only --fast
- name: Build and test
shell: cmd
run: |
- stack test
+ stack test --fast