forked from freizl/hoauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
46 lines (39 loc) · 850 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
language: nix
before_install:
nix-env --install --attr nixpkgs.haskellPackages.hlint
script:
- make ci-$TEST_SUITE
env:
matrix:
- TEST_SUITE=lint
- TEST_SUITE=build
notifications:
slack: freizl:D42Dy68Q4Cj8Bjw5Qi9mZrQf
# http://docs.haskellstack.org/en/stable/travis_ci.html
# language: haskell
#
# branches:
# only:
# - master
#
# sudo: false
#
#
# cache:
# directories:
# - $HOME/.stack/
#
# before_install:
# - mkdir -p ~/.local/bin
# - export PATH=~/.local/bin:$PATH
# - travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
# - chmod a+x ~/.local/bin/stack
# - git --version
# - stack --version
#
# install:
# - stack +RTS -N2 -RTS setup --no-terminal --skip-ghc-check
#
# script:
# - make ci-$TEST_SUITE
#