about summary refs log blame commit diff
path: root/.github/workflows/haskell.yml
blob: 9b6cb1ab84d0e8fc43277da7c5802317c8753202 (plain) (tree)


















                                                           
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