diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-14 10:47:29 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-14 10:47:29 -0700 |
commit | 3f455aedfa653d55dc3f0bd491ae9d22b2a4c57a (patch) | |
tree | 88d0d37913f395fa392286b2317da7d83fbb8b22 /.github/workflows | |
parent | 88a0327579438de0c7ca340b7f11e7041237b4f6 (diff) | |
download | pandoc-3f455aedfa653d55dc3f0bd491ae9d22b2a4c57a.tar.gz |
Github CI/windows: separate dependencies step.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/haskell.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 0507056c2..d2ee6bfd7 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -38,8 +38,11 @@ jobs: shell: cmd run: | choco install haskell-stack + - name: Install dependencies + run: | + stack update + stack test --dependencies-only - name: Build and test shell: cmd run: | - stack update stack test |