diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-12 23:04:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-12 23:04:58 -0700 |
commit | 69b42255f211f243247a860b649a064453b4c191 (patch) | |
tree | 6996432da86d970ab7e321006a5fe247afb13ac0 | |
parent | 65f73de28a679b32bbe28c22318d8b44b06175bd (diff) | |
download | pandoc-69b42255f211f243247a860b649a064453b4c191.tar.gz |
Add haskell.yml
Add GitHub CI file
-rw-r--r-- | .github/workflows/haskell.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml new file mode 100644 index 000000000..1a7a87f68 --- /dev/null +++ b/.github/workflows/haskell.yml @@ -0,0 +1,18 @@ +name: Haskell CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Install dependencies + run: cabal v2-update && cabal v2-build --dependencies-only --enable-tests + - name: Build + run: | + cabal v2-build --enable-tests + - name: Run tests + run: cabal v2-test |