From 902b4ec54f0cf27afaa801c9807595c1cdf203db Mon Sep 17 00:00:00 2001 From: Marko Baricevic Date: Tue, 15 Dec 2020 11:30:00 +0100 Subject: [PATCH] bump required version to 1.15 --- .github/workflows/test.yml | 13 ++++--------- go.mod | 2 +- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f0ada80..1e13f97 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,19 +6,14 @@ on: - master jobs: - build: - name: Build + test: runs-on: ubuntu-latest - timeout-minutes: 5 steps: - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + with: + go-version: "1.15" - run: make build - - test-coverage: - runs-on: ubuntu-latest - needs: Build - steps: - - uses: actions/checkout@v2 - run: | go test ./... -mod=readonly -timeout 8m -race -coverprofile=coverage.txt -covermode=atomic - uses: codecov/codecov-action@v1.0.7 diff --git a/go.mod b/go.mod index aa4ebae..1573072 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/interchainio/tm-load-test -go 1.13 +go 1.15 require ( github.com/gorilla/websocket v1.4.2