Commit 3f7311d1 authored by Toralf Wittner's avatar Toralf Wittner
Browse files

Add .gitlab-ci.yml

parent 1254c405
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+15 −0
Original line number Diff line number Diff line
test:7.10:
  image: haskell:7.10
  script:
    - cabal install --enable-test --enable-bench --only-dep -j
    - cabal build
    - cabal test
    - cabal bench

test:7.8:
  image: haskell:7.8
  script:
    - cabal install --enable-test --enable-bench --only-dep -j
    - cabal build
    - cabal test
    - cabal bench

.travis.yml

deleted100644 → 0
+0 −4
Original line number Diff line number Diff line
language: haskell
ghc:
    - 7.8
    - 7.6