aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-09-12 23:10:20 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-09-12 23:10:20 -0700
commitab792faa3a78e4990c4d0c9ef797f1f0789877ae (patch)
treeb1b8fbaa8c362f61200a77c412015274e22e6515 /.github/workflows
parent8a0ffba2962f51eb20321506d7176139004fd824 (diff)
downloadpandoc-ab792faa3a78e4990c4d0c9ef797f1f0789877ae.tar.gz
GitHub CI - use plain v1-cabal.
Diffstat (limited to '.github/workflows')
-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