diff --git a/.circleci/config.yml b/.circleci/config.yml index a465fd97a..13efe8051 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,11 +3,6 @@ orbs: codecov: codecov/codecov@1.0.5 executors: - go1_12: - docker: - - image: circleci/golang:1.12 - environment: - GO111MODULE: "on" go1_13: docker: - image: circleci/golang:1.13 @@ -54,16 +49,6 @@ jobs: name: go-vet command: go vet ./... - test_1_12: - working_directory: /go/src/github.com/nspcc-dev/neo-go - executor: go1_12 - steps: - - checkout - - run: git submodule sync - - run: git submodule update --init - - gomod - - run: go test -v -race ./... - test_1_13: working_directory: /go/src/github.com/nspcc-dev/neo-go executor: go1_13 @@ -100,7 +85,7 @@ jobs: build_cli: working_directory: /go/src/github.com/nspcc-dev/neo-go - executor: go1_12 + executor: go1_14 steps: - checkout - gomod @@ -111,7 +96,7 @@ jobs: build_image: working_directory: /go/src/github.com/nspcc-dev/neo-go - executor: go1_12 + executor: go1_14 docker: - image: golang:1-alpine steps: @@ -142,10 +127,6 @@ workflows: filters: tags: only: v/[0-9]+\.[0-9]+\.[0-9]+/ - - test_1_12: - filters: - tags: - only: v/[0-9]+\.[0-9]+\.[0-9]+/ - test_1_13: filters: tags: diff --git a/.travis.yml b/.travis.yml index 1efe14318..77e2b66aa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: go go: - - 1.12.x + - 1.14.x env: - GO111MODULE=on install: diff --git a/README.md b/README.md index 10dcac6ca..563fdd1cf 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Neo 3 code (0.90.0 being compatible with Neo 3 preview2). ## Installation -Go: 1.12+ +Go: 1.13+ Install dependencies. diff --git a/go.mod b/go.mod index 9d982537e..f4a2e11af 100644 --- a/go.mod +++ b/go.mod @@ -28,4 +28,4 @@ require ( gopkg.in/abiosoft/ishell.v2 v2.0.0 ) -go 1.12 +go 1.13