aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/CI.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index c73bb3b..37ca589 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -27,9 +27,17 @@ jobs:
- name: Checkout code
uses: actions/checkout@v1
- - name: Install Haskell
+ - name: Install Haskell Linux / macOS
+ if: contains(matrix.os, 'ubuntu') or contains(matrix.os, 'macos')
uses: mstksg/setup-stack@v1
+ - name: Install Haskell Windows
+ if: contains(matrix.os, 'windows')
+ run: |
+ wget https://get.haskellstack.org/stable/windows-x86_64.zip
+ unzip windows-x86_64.zip
+ copy windows-x86_64\stack.exe %APPDATA%\local\bin
+
- name: Install GFortran Linux
if: contains(matrix.os, 'ubuntu')
run: |