File tree Expand file tree Collapse file tree 2 files changed +28
-24
lines changed Expand file tree Collapse file tree 2 files changed +28
-24
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- pipeline :
3
- dependencies :
4
- image : golang:1.13
5
- secrets : [ snyk_token ]
6
- group : ci
7
- commands :
8
- - curl -sL https://deb.nodesource.com/setup_12.x | bash -
9
- - apt-get install -y nodejs
10
- - npm install -g snyk
11
- - snyk test
12
- when :
13
- branch : master
14
- event : push
15
- test :
2
+ kind : pipeline
3
+ name : mcli
4
+ type : docker
5
+
6
+ steps :
7
+ - name : test
16
8
image : golang:1.13
17
- group : ci
9
+ volumes :
10
+ - name : deps
11
+ path : /go
18
12
commands :
19
13
- make test
20
- lint :
14
+
15
+ - name : lint
21
16
image : golangci/golangci-lint:v1.22.0
22
- group : ci
23
17
commands :
24
18
- make lint
25
- build :
26
- image : golang:1.13
27
- group : ci
19
+
20
+ - name : build
21
+ image : golang
22
+ volumes :
23
+ - name : deps
24
+ path : /go
28
25
commands :
29
- - make build
26
+ - go build
27
+ volumes :
28
+ - name : deps
29
+ temp : {}
30
30
31
- branches :
32
- - master
33
- - feature/*
31
+ trigger :
32
+ branch :
33
+ - master
34
+ event :
35
+ - push
36
+ - pull_request
Original file line number Diff line number Diff line change 1
1
# MCLI
2
+ [ ![ Build Status] ( https://cloud.drone.io/api/badges/mongodb/mcli/status.svg )] ( https://cloud.drone.io/mongodb/mcli )
2
3
3
4
` mcli ` is a tool for managing your MongoDB cloud services
4
5
You can’t perform that action at this time.
0 commit comments