Add Github Actions config

This commit is contained in:
Griffin Smith 2019-09-25 14:27:44 -04:00 committed by GitHub
parent d632a30d05
commit 915264acae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

19
.github/workflows/haskell.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: Haskell CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: cabal install --only-dependencies --enable-tests
- name: Build
run: |
cabal configure --enable-tests
cabal build
- name: Run tests
run: cabal test