File tree Expand file tree Collapse file tree 2 files changed +19
-6
lines changed Expand file tree Collapse file tree 2 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 1- defaults : &defaults
1+ test_with_go_modules : &test_with_go_modules
2+ steps :
3+ - checkout
4+ - run : go test ./...
5+ - run : go vet ./...
6+
7+ test_without_go_modules : &test_without_go_modules
28 working_directory : /go/src/github.com/graphql-go/graphql
39 steps :
410 - checkout
511 - run : go get -v -t -d ./...
612 - run : go test ./...
713 - run : go vet ./...
8-
14+
15+ defaults : &defaults
16+ << : *test_with_go_modules
17+
918version : 2
1019jobs :
1120 golang:1.8.7 :
12- << : *defaults
21+ << : *test_without_go_modules
1322 docker :
1423 - image : circleci/golang:1.8.7
1524 golang:1.9.7 :
16- << : *defaults
25+ << : *test_without_go_modules
1726 docker :
1827 - image : circleci/golang:1.9.7
28+ golang:1.11 :
29+ << : *defaults
30+ docker :
31+ - image : circleci/golang:1.11
1932 golang:latest :
2033 << : *defaults
2134 docker :
2235 - image : circleci/golang:latest
2336 coveralls :
24- working_directory : /go/src/github.com/graphql-go/graphql
2537 docker :
2638 - image : circleci/golang:latest
2739 steps :
2840 - checkout
29- - run : go get -v -t -d ./...
3041 - run : go get github.com/mattn/goveralls
3142 - run : go test -v -cover -race -coverprofile=coverage.out
3243 - run : /go/bin/goveralls -coverprofile=coverage.out -service=circle-ci -repotoken $COVERALLS_TOKEN
@@ -37,5 +48,6 @@ workflows:
3748 jobs :
3849 - golang:1.8.7
3950 - golang:1.9.7
51+ - golang:1.11
4052 - golang:latest
4153 - coveralls
Original file line number Diff line number Diff line change 1+ module github.com/graphql-go/graphql
You can’t perform that action at this time.
0 commit comments