From 05bcef7812daa04717e0181de5a729d7be212c48 Mon Sep 17 00:00:00 2001 From: Paul Griffiths Date: Mon, 22 Feb 2021 12:20:13 -0500 Subject: [PATCH] Add go 1.16.x to Github workflow. --- .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 ace2c48..aefe574 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,7 +11,7 @@ jobs: build-linux: strategy: matrix: - go-version: [1.13.x, 1.14.x, 1.15.x] + go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x] runs-on: ubuntu-latest steps: @@ -31,7 +31,7 @@ jobs: build-other: strategy: matrix: - go-version: [1.13.x, 1.14.x, 1.15.x] + go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x] os: [macos-latest, windows-latest] runs-on: ${{ matrix.os }}