From 450806293c4e98eec1fc6f85a422a87e152d451c Mon Sep 17 00:00:00 2001 From: Eason Lin Date: Sun, 24 May 2020 12:43:28 +0800 Subject: [PATCH] chore: drop go1.11&1.12 ci (#710) --- .github/workflows/ci.yml | 4 ++-- .travis.yml | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4abd3fc28..ef9d51a7e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ jobs: test: strategy: matrix: - go: [ '1.11.x', '1.12.x' ] + go: [ '1.13.x', '1.14.x' ] platform: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.platform }} steps: @@ -37,4 +37,4 @@ jobs: working-directory: ./src/github.com/${{ github.repository }} run: make test env: - GOPATH: ${{ runner.workspace }} \ No newline at end of file + GOPATH: ${{ runner.workspace }} diff --git a/.travis.yml b/.travis.yml index d2ac67355..36a51fd72 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ language: go go: - - 1.11.x - - 1.12.x - 1.13.x - 1.14.x