Skip to content

Commit

Permalink
Add .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalii Guzeev committed Sep 13, 2018
1 parent b4322ab commit 6dae45c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Do not choose a language; we provide our own build tools.
language: generic

before_install:
- wget https://www.haskell.org/platform/download/8.4.3/haskell-platform-8.4.3-unknown-posix--full-x86_64.tar.gz
- tar xf haskell-platform-8.4.3-unknown-posix--full-x86_64.tar.gz
- sudo ./install-haskell-platform.sh
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- cabal update
- cabal --version

install:
- cabal install --enable-tests

script:
- cabal test
- cabal haddock

0 comments on commit 6dae45c

Please sign in to comment.