Skip to content

Commit

Permalink
install stack of macos as it is no longer included
Browse files Browse the repository at this point in the history
  • Loading branch information
dten committed Jul 16, 2024
1 parent 10f218a commit 1b6f9ba
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ jobs:
# restore-keys: |
# ${{ runner.os }}-${{ matrix.resolver }}-

- name: Install stack if needed
shell: bash
run: |
set -ex
if [[ "${{ matrix.os }}" == "macos-latest" ]]
then
# macos-latest does not include Haskell tools as of 2024-05-06.
curl -sSL https://get.haskellstack.org/ | sh
fi
- name: Build and run tests
shell: bash
run: |
Expand Down

0 comments on commit 1b6f9ba

Please sign in to comment.