You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is done via the following command with Go 1.11:
```
$ go mod init github.com/graphql-go/graphql
go: creating new go.mod: module github.com/graphql-go/graphql
$ go mod tidy
```
Using Go Modules removes the need to develop/build the project in a
`$GOPATH`-based location. More specifically, with latest Go, setting up
development environment can be as simple as:
```
/under/whatever/path $ git clone https://github.com/graphql-go/graphql # or your own fork
/under/whatever/path $ go test ./...
```
Also instruct CircleCI to run tests with Go Modules when latest Go is in
use. See https://circleci.com/blog/go-v1.11-modules-and-circleci/.
0 commit comments