diff options
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05bb75f7f..ac0e39bb6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,13 +119,19 @@ jobs: # key: ${{ runner.os }}-stack-work-${{ hashFiles('stack.yaml') }} # restore-keys: ${{ runner.os }}-stack-work + # Note: the set __COMPAT_LAYER= is needed to avoid an access + # violation error; see + # https://github.com/commercialhaskell/stack/issues/3765 + - name: Install dependencies run: | + set __COMPAT_LAYER= stack update stack test --dependencies-only --fast - name: Build and test shell: cmd run: | + set __COMPAT_LAYER= stack test --fast --test-arguments=--hide-successes macos: |