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 11, 2018
1 parent b4322ab commit 88eb6cc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Use new container infrastructure to enable caching
sudo: false

# Do not choose a language; we provide our own build tools.
language: generic

addons:
apt:
packages:
- haskell-platform

before_install:
# Download and unpack cabal executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- cabal update

install:
- cabal install --enable-tests

script:
- cabal test
- cabal haddock

0 comments on commit 88eb6cc

Please sign in to comment.