From b023bfccf4599340fdb9645b013d2ac1c60fc558 Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Sun, 15 Sep 2019 18:12:12 -0700
Subject: [PATCH] GitHuB CI: remove --disable-optimization and --fast.

---
 .github/workflows/haskell.yml | 10 +++++-----
 1 file 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