From 915264acae35e71f79c6193d022baa2455d880d3 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Wed, 25 Sep 2019 14:27:44 -0400 Subject: Add Github Actions config --- .github/workflows/haskell.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/haskell.yml (limited to '.github/workflows/haskell.yml') diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml new file mode 100644 index 000000000000..9b6cb1ab84d0 --- /dev/null +++ b/.github/workflows/haskell.yml @@ -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 -- cgit 1.4.1