From ba848b341650ea03b739030b0c6ee96dea8e77c0 Mon Sep 17 00:00:00 2001 From: Atsushi Watanabe Date: Sun, 21 Mar 2021 18:19:23 +0900 Subject: [PATCH] Test on Go 1.16 and 1.15 --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index aa3f85c..deb5193 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - go: [ '1.15', '1.14' ] + go: [ '1.16', '1.15' ] name: Linux Go ${{ matrix.go }} steps: - name: Checkout @@ -33,13 +33,13 @@ jobs: - name: Run Test Suite run: make test - uses: codecov/codecov-action@v1 - if: matrix.go == '1.15' + if: matrix.go == '1.16' build-darwin: runs-on: macos-latest strategy: fail-fast: false matrix: - go: [ '1.15', '1.14' ] + go: [ '1.16', '1.15' ] name: Darwin Go ${{ matrix.go }} steps: - name: Checkout @@ -66,7 +66,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: '1.15' + go-version: '1.16' - name: Installing go-licenses run: go get github.com/google/go-licenses - name: Checking licenses