File tree Expand file tree Collapse file tree 2 files changed +42
-41
lines changed Expand file tree Collapse file tree 2 files changed +42
-41
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ pull_request :
5
+
6
+ jobs :
7
+ lint :
8
+ runs-on : ubuntu-18.04
9
+ container : grafana/cortex-jsonnet-build-image:3527936
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ name : Checkout
13
+ with :
14
+ fetch-depth : 0
15
+
16
+ - name : " Lint mixin"
17
+ run : make lint-mixin
18
+
19
+ - name : " Lint playbooks"
20
+ run : make lint-playbooks
21
+ build :
22
+ runs-on : ubuntu-18.04
23
+ container : grafana/cortex-jsonnet-build-image:3527936
24
+ steps :
25
+ - uses : actions/checkout@v2
26
+ name : Checkout
27
+ with :
28
+ fetch-depth : 0
29
+
30
+ - name : " Build mixin"
31
+ run : make build-mixin
32
+ readme :
33
+ runs-on : ubuntu-18.04
34
+ container : grafana/cortex-jsonnet-build-image:3527936
35
+ steps :
36
+ - uses : actions/checkout@v2
37
+ name : Checkout
38
+ with :
39
+ fetch-depth : 0
40
+
41
+ - name : " Test readme"
42
+ run : make test-readme
You can’t perform that action at this time.
0 commit comments