Disable benchmarks to maintain LTS compatability. #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Haskell CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-haskell@v1 | |
with: | |
ghc-version: '8.6.5' | |
cabal-version: '3.0' | |
- name: Install dependencies | |
run: | | |
cabal update | |
cabal new-build --only-dependencies | |
- name: Build | |
run: | | |
cabal new-configure --enable-tests | |
cabal new-build | |
- name: Run tests | |
run: cabal new-test |