aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/CI.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index 946caba..8437483 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -27,6 +27,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v1
+ - name: Install Haskell Linux / macOS (manual)
+ if: contains(matrix.os, 'macos')
+ run: |
+ curl --insecure -L https://get.haskellstack.org/stable/osx-x86_64.tar.gz | tar xz --strip-components=1 --include '*/stack' -C /Users/runner/.local/bin
+
- name: Install Haskell Linux / macOS
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
uses: mstksg/setup-stack@v1