From 994b85b9bd6a7052ab790da274d186d9f4ab7483 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Thu, 13 Aug 2020 15:47:37 -0400 Subject: [PATCH] Add Go 1.15.x to build matrix --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 69e8423..1cceb0b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [1.13.x, 1.14.x] + go-version: [1.13.x, 1.14.x, 1.15.x] platform: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.platform }} env: @@ -40,4 +40,4 @@ jobs: go test -race -covermode atomic -coverprofile=profile.cov ./... GO111MODULE=off go get github.com/mattn/goveralls $(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github - if: matrix.go-version == '1.14.x' && matrix.platform == 'ubuntu-latest' + if: matrix.go-version == '1.15.x' && matrix.platform == 'ubuntu-latest'