Skip to content

Commit 044e3e3

Browse files
authored
Merge pull request #4 from tilt-dev/circleci-project-setup
Add .circleci/config.yml
2 parents ac3de07 + 59421d5 commit 044e3e3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.circleci/config.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2.1
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/golang:1.14
6+
working_directory: /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}}
7+
steps:
8+
- checkout
9+
- run: go get -v -t -d ./...
10+
- run: go test -v ./...

0 commit comments

Comments
 (0)