From 4709eed615130b0b9ed18385c4ab8a38f048c6a2 Mon Sep 17 00:00:00 2001 From: Masaaki Goshima Date: Fri, 12 Mar 2021 00:57:35 +0900 Subject: [PATCH] Support Go 1.16 --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 700aeca..2fda7c1 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ "ubuntu-latest", "macos-latest", "windows-latest" ] - go-version: [ "1.13", "1.14", "1.15" ] + go-version: [ "1.13", "1.14", "1.15", "1.16" ] runs-on: ${{ matrix.os }} steps: - name: setup Go ${{ matrix.go-version }} @@ -38,7 +38,7 @@ jobs: - name: setup Go uses: actions/setup-go@v2 with: - go-version: 1.15 + go-version: 1.16 - name: checkout uses: actions/checkout@v2 - name: measure coverage