We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c63b8 commit ae64d25Copy full SHA for ae64d25
.gitlab-ci.yml
@@ -0,0 +1,26 @@
1
+image: adahlberg/nlblueprintci:19.04
2
+
3
+.only_mr: &only_mr
4
+ only:
5
+ - master
6
+ - merge_requests
7
8
+.install: &install
9
+ before_script:
10
+ - make install
11
12
+stages:
13
+ - lint
14
+ - tests
15
16
+lint:
17
+ <<: *install
18
+ stage: lint
19
+ script: make lint
20
+ <<: *only_mr
21
22
+test:
23
24
+ stage: tests
25
+ script: make tests
26
0 commit comments