From 0200fa4dfdf8cef264f2a1855dd3f69d86118a66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20=C4=8Cert=C3=ADk?= Date: Tue, 21 Jul 2020 09:28:38 -0600 Subject: Install Haskell on macOS --- .github/workflows/CI.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.github/workflows') 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 -- cgit v1.2.3