Skip to content

Commit f4fa19b

Browse files
committed
switch to Circle CI
1 parent 2a9a4ad commit f4fa19b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Golang CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-go/ for more details
4+
version: 2
5+
jobs:
6+
build:
7+
docker:
8+
# specify the version
9+
- image: circleci/golang:1.9
10+
# Specify service dependencies here if necessary
11+
# CircleCI maintains a library of pre-built images
12+
# documented at https://circleci.com/docs/2.0/circleci-images/
13+
14+
working_directory: /go/src/github.com/golang/gops
15+
steps:
16+
- checkout
17+
18+
# specify any bash command here prefixed with `run: `
19+
- run: go get -v -t -d ./...
20+
- run: go test -v ./...

0 commit comments

Comments
 (0)