Skip to content

Commit 37d0f1d

Browse files
committed
Add first steps with circle ci
Signed-off-by: solidnerd <[email protected]>
1 parent 4ca1420 commit 37d0f1d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.circleci/config.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)