From 12aba62b7b3589a308a45b2e1d2d6ba33e281c6e Mon Sep 17 00:00:00 2001 From: Erik Dubbelboer Date: Sun, 16 Aug 2020 10:33:01 +0200 Subject: [PATCH] Change CI to use Go 1.15 --- .github/workflows/security.yml | 2 +- .travis.yml | 11 +++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 4a485e0..d550ae7 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.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] runs-on: ${{ matrix.platform }} steps: diff --git a/.travis.yml b/.travis.yml index bb7e7c8..6933881 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,10 +8,10 @@ os: - windows go: - tip + - 1.15.x - 1.14.x - 1.13.x - 1.12.x - - 1.11.x script: - go test -v ./... @@ -31,7 +31,7 @@ jobs: os: - linux go: - - 1.14.x + - 1.15.x script: - GOOS=linux go build - GOOS=darwin go build @@ -42,24 +42,23 @@ jobs: os: - osx go: - - 1.14.x + - 1.15.x script: - GOOS=linux go build - GOOS=darwin go build - GOOS=freebsd go build - GOOS=windows go build - - GOARCH=386 go build - stage: race detector os: - linux go: - - 1.14.x + - 1.15.x script: - go test -race -v ./... - stage: race detector os: - osx go: - - 1.14.x + - 1.15.x script: - go test -race -v ./...