We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3997432 commit 5a03154Copy full SHA for 5a03154
1 file changed
.circleci/config.yml
@@ -0,0 +1,18 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ docker:
5
+ - image: circleci/golang:1.9
6
+
7
+ working_directory: /go/src/github.com/bitnami/render-template
8
+ steps:
9
+ - checkout
10
+ - run: make get-build-deps
11
+ - run: make dep-ensure
12
+ - run: make vet
13
+ - run: make lint
14
+ - run: make cover
15
+ - run: make build
16
+ - store_artifacts:
17
+ path: /go/src/github.com/bitnami/render-template/out/render-template
18
+ destination: render-template
0 commit comments