diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-13 10:54:55 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-13 10:54:55 -0700 |
commit | b59e6d03762becd5c9d767463ce7ba5062a1b4a0 (patch) | |
tree | 7df154e88c5f553e0743e91b41a248881ee0f764 /.github/workflows | |
parent | 8984eb7460c96f8f2b7e4975cd3fa1b98590e31a (diff) | |
download | pandoc-b59e6d03762becd5c9d767463ce7ba5062a1b4a0.tar.gz |
GitHuB CI: Try adding windows build.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/haskell.yml | 18 |
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 |