diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-12 23:10:20 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-12 23:10:20 -0700 |
commit | ab792faa3a78e4990c4d0c9ef797f1f0789877ae (patch) | |
tree | b1b8fbaa8c362f61200a77c412015274e22e6515 /.github/workflows | |
parent | 8a0ffba2962f51eb20321506d7176139004fd824 (diff) | |
download | pandoc-ab792faa3a78e4990c4d0c9ef797f1f0789877ae.tar.gz |
GitHub CI - use plain v1-cabal.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/haskell.yml | 6 |
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 |