aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-09-13 10:54:55 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-09-13 10:54:55 -0700
commitb59e6d03762becd5c9d767463ce7ba5062a1b4a0 (patch)
tree7df154e88c5f553e0743e91b41a248881ee0f764 /.github/workflows
parent8984eb7460c96f8f2b7e4975cd3fa1b98590e31a (diff)
downloadpandoc-b59e6d03762becd5c9d767463ce7ba5062a1b4a0.tar.gz
GitHuB CI: Try adding windows build.
Diffstat (limited to '.github/workflows')
-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