We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ca1420 commit 37d0f1dCopy full SHA for 37d0f1d
1 file changed
.circleci/config.yml
@@ -0,0 +1,22 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ working_directory: /go/src/github.com/solidnerd/gogpat
5
+ docker:
6
+ - image: circleci/golang:1.10
7
+ steps:
8
+ - checkout
9
+ - restore_cache:
10
+ keys:
11
+ - v1-pkg-cache
12
+ - run: make ci
13
+ - save_cache:
14
+ key: v1-pkg-cache
15
+ paths:
16
+ - ~/.cache/go-build
17
+
18
+workflows:
19
+ version: 2
20
+ build-and-deploy:
21
+ jobs:
22
+ - build
0 commit comments