28 lines
309 B
YAML
28 lines
309 B
YAML
|
sudo: true
|
||
|
language: haskell
|
||
|
|
||
|
git:
|
||
|
depth: 5
|
||
|
|
||
|
cabal: "2.4"
|
||
|
|
||
|
cache:
|
||
|
directories:
|
||
|
- "$HOME/.cabal/store"
|
||
|
|
||
|
|
||
|
matrix:
|
||
|
include:
|
||
|
- ghc: 8.6.4
|
||
|
|
||
|
|
||
|
install:
|
||
|
- cabal new-update
|
||
|
- cabal new-build --enable-tests --enable-benchmarks
|
||
|
|
||
|
script:
|
||
|
- cabal new-test --enable-tests
|
||
|
|
||
|
notifications:
|
||
|
email: false
|