forked from jtdaugherty/dbmigrations
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vitalii Guzeev
committed
Sep 11, 2018
1 parent
b4322ab
commit 88eb6cc
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |