aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/haskell.yml18
1 files changed, 17 insertions, 1 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml
index 1d1d2037a..0507056c2 100644
--- a/.github/workflows/haskell.yml
+++ b/.github/workflows/haskell.yml
@@ -3,7 +3,7 @@ name: Haskell CI
on: [push]
jobs:
- build:
+ linux:
runs-on: ubuntu-latest
@@ -27,3 +27,19 @@ jobs:
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
cabal v2-test
+
+ windows:
+
+ runs-on: windows-latest
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Install stack
+ shell: cmd
+ run: |
+ choco install haskell-stack
+ - name: Build and test
+ shell: cmd
+ run: |
+ stack update
+ stack test