aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/haskell.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/haskell.yml')
-rw-r--r--.github/workflows/haskell.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml
index 40994c83b..54fb6d58f 100644
--- a/.github/workflows/haskell.yml
+++ b/.github/workflows/haskell.yml
@@ -10,9 +10,9 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install dependencies
- run: cabal new-update && cabal new-build --dependencies-only --enable-tests
+ run: cabal update && cabal install --dependencies-only --enable-tests
- name: Build
run: |
- cabal new-build --enable-tests
+ cabal configure --enable-tests && cabal build
- name: Run tests
- run: cabal new-test
+ run: cabal test