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 2a9a4ad commit f4fa19bCopy full SHA for f4fa19b
.circleci/config.yml
@@ -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