From dfce3a76b96f7ec9b77470ae01f5b00f0c0092e0 Mon Sep 17 00:00:00 2001 From: Xavier Coulon Date: Mon, 22 Nov 2021 21:56:17 +0100 Subject: [PATCH] chore(build): build, test and lint with Go 1.16 and 1.17 (#869) Fixes #866 Signed-off-by: Xavier Coulon --- .github/workflows/ci-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 815cdbee..29bc126b 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -14,7 +14,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.16.x,1.15.x] + go-version: [1.16.x,1.17.x] os: [ubuntu-latest, macos-latest, windows-latest] name: Test ${{ matrix.os }} with Go ${{ matrix.go-version }} @@ -65,7 +65,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.15.x, 1.14.x] + go-version: [1.16.x, 1.17.x] steps: - name: Checkout code uses: actions/checkout@v2