From 0d72f52333a3024e137cc6c4e5d6d425a0bf573a Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Fri, 22 Sep 2023 14:22:33 -0400 Subject: [PATCH] workflows/ci.yml: Add multiple Go versions to testing matrix This change officially removes Go 1.15 from the testing matrix and adds the Go versions used for supporting the Exercism CLI. Namely Go 1.17, 1.18, and 1.19. Testing support for Go 1.20 and 1.21.x to follow. --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 511b27234..b6842b906 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,10 @@ jobs: strategy: fail-fast: false matrix: - go-version: ["1.15"] + go-version: + '1.17' + '1.18' + '1.19' os: [ubuntu-latest, windows-latest, macOS-latest] steps: