From f1c9c307799a7f4daa5ef4503c26d44d3f53fbdd Mon Sep 17 00:00:00 2001 From: lhchavez Date: Fri, 23 Oct 2020 05:20:11 -0700 Subject: [PATCH 1/2] Make the Travis tests only run tip The rest of the Go versions are better served by GitHub Actions. --- .travis.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index b25a052..984e1c6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,6 @@ language: go go: - - "1.9" - - "1.10" - - "1.11" - - "1.12" - - "1.13" - tip install: @@ -15,10 +10,6 @@ install: script: - make test-static -matrix: - allow_failures: - - go: tip - git: submodules: true -- 2.45.2 From 6fcbf910944535bb0b6f733ab687a78483a6eec1 Mon Sep 17 00:00:00 2001 From: lhchavez Date: Fri, 23 Oct 2020 05:21:04 -0700 Subject: [PATCH 2/2] Use Go 1.15 in the CI This has been released for a while --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42636bc..caa52a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: strategy: fail-fast: false matrix: - go: [ '1.11', '1.12', '1.13', '1.14' ] + go: [ '1.11', '1.12', '1.13', '1.14', '1.15' ] name: Go ${{ matrix.go }} runs-on: ubuntu-20.04 @@ -77,7 +77,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: '1.14' + go-version: '1.15' id: go - name: Check out code into the Go module directory uses: actions/checkout@v1 @@ -99,7 +99,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: '1.14' + go-version: '1.15' id: go - name: Check out code into the Go module directory uses: actions/checkout@v1 @@ -121,7 +121,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: '1.14' + go-version: '1.15' id: go - name: Check out code into the Go module directory uses: actions/checkout@v1 -- 2.45.2