From 7461a8d6f53e61f190067d56f83b7413c5c7f20a Mon Sep 17 00:00:00 2001 From: Anthony Mirabella Date: Tue, 5 Oct 2021 13:42:29 -0400 Subject: [PATCH] Add Go 1.17 to testing matrix (#2268) * Bump minimum Go version to 1.16 Signed-off-by: Anthony J Mirabella * Revert "Bump minimum Go version to 1.16" This reverts commit bcb390405eadf59dcdcd1515529831949ff59301. * Add testing for Go 1.17 Signed-off-by: Anthony J Mirabella --- .github/workflows/ci.yml | 2 +- README.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5de2e3bd0c8..ebd5688fb85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,7 +109,7 @@ jobs: compatibility-test: strategy: matrix: - go-version: [1.16, 1.15] + go-version: [1.17, 1.16, 1.15] os: [ubuntu-latest, macos-latest, windows-latest] # GitHub Actions does not support arm* architectures on default # runners. It is possible to acomplish this with a self-hosted runner diff --git a/README.md b/README.md index d90db542f68..157dcc3cac1 100644 --- a/README.md +++ b/README.md @@ -34,14 +34,19 @@ This project is tested on the following systems. | OS | Go Version | Architecture | | ------- | ---------- | ------------ | +| Ubuntu | 1.17 | amd64 | | Ubuntu | 1.16 | amd64 | | Ubuntu | 1.15 | amd64 | +| Ubuntu | 1.17 | 386 | | Ubuntu | 1.16 | 386 | | Ubuntu | 1.15 | 386 | +| MacOS | 1.17 | amd64 | | MacOS | 1.16 | amd64 | | MacOS | 1.15 | amd64 | +| Windows | 1.17 | amd64 | | Windows | 1.16 | amd64 | | Windows | 1.15 | amd64 | +| Windows | 1.17 | 386 | | Windows | 1.16 | 386 | | Windows | 1.15 | 386 |