You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
435 B
19 lines
435 B
matrix:
|
|
GHC_VERSION:
|
|
- 9
|
|
- 8
|
|
|
|
pipeline:
|
|
test:
|
|
image: haskell:${GHC_VERSION}
|
|
commands:
|
|
- apt-get update
|
|
- apt-get install -y xorg-dev
|
|
- apt-get install -y libasound2-dev libxpm-dev libmpd-dev libxrandr-dev
|
|
- apt-get install -y hspec-discover hlint
|
|
|
|
- hlint src
|
|
|
|
- cabal update
|
|
- cabal build --enable-tests -fall_extensions
|
|
- cabal test --enable-tests -fall_extensions
|
|
|