We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acc7e3b commit c9915e6Copy full SHA for c9915e6
.circleci/config.yml
@@ -4,9 +4,6 @@ jobs:
4
build:
5
docker:
6
- image: fpco/stack-build:lts-12.9
7
- branches:
8
- only:
9
- - master
10
steps:
11
- checkout
12
.gitlab-ci.yml
@@ -0,0 +1,16 @@
1
+image: haskell:8.4.3
2
+cache:
3
+ key: ${CI_COMMIT_REF_SLUG}
+ paths:
+ - .stack-work/
+ - .stack-root/
+before_script:
+ - stack install --only-dependencies
+stages:
+ - test
+test:
+ stage: test
13
+ only:
14
+ - master
15
+ script:
16
+ - stack test
0 commit comments