aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-09-15 18:12:12 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-09-15 18:12:12 -0700
commitb023bfccf4599340fdb9645b013d2ac1c60fc558 (patch)
treee343c7def44f592cbad3fd6c741fbd440787a153 /.github
parent172c7e3b38d5ff89e7e3d7b62cbdffcdda87cfe1 (diff)
downloadpandoc-b023bfccf4599340fdb9645b013d2ac1c60fc558.tar.gz
GitHuB CI: remove --disable-optimization and --fast.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/haskell.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml
index 2a4f64ec0..d2ee6bfd7 100644
--- a/.github/workflows/haskell.yml
+++ b/.github/workflows/haskell.yml
@@ -18,15 +18,15 @@ jobs:
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
cabal v2-update
- cabal v2-build --dependencies-only --enable-tests --disable-optimization
+ cabal v2-build --dependencies-only --enable-tests
- name: Build
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
- cabal v2-build --enable-tests --disable-optimization
+ cabal v2-build --enable-tests
- name: Run tests
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
- cabal v2-test --disable-optimization
+ cabal v2-test
windows:
@@ -41,8 +41,8 @@ jobs:
- name: Install dependencies
run: |
stack update
- stack test --dependencies-only --fast
+ stack test --dependencies-only
- name: Build and test
shell: cmd
run: |
- stack test --fast
+ stack test