diff options
-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 |