Skip to content

Commit 88eb6cc

Browse files
author
Vitalii Guzeev
committed
Add .travis.yml
1 parent b4322ab commit 88eb6cc

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.travis.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Use new container infrastructure to enable caching
2+
sudo: false
3+
4+
# Do not choose a language; we provide our own build tools.
5+
language: generic
6+
7+
addons:
8+
apt:
9+
packages:
10+
- haskell-platform
11+
12+
before_install:
13+
# Download and unpack cabal executable
14+
- mkdir -p ~/.local/bin
15+
- export PATH=$HOME/.local/bin:$PATH
16+
- cabal update
17+
18+
install:
19+
- cabal install --enable-tests
20+
21+
script:
22+
- cabal test
23+
- cabal haddock

0 commit comments

Comments
 (0)