From da7ce5baf2cc56998284df900192124a1c05390c Mon Sep 17 00:00:00 2001 From: ICHINOSE Shogo Date: Sun, 23 Jul 2023 17:23:34 +0900 Subject: [PATCH] add Go 1.20, 1.19, 1.18 and 1.17 to the build matrix. --- .github/workflows/test.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1906a17..645e356 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,7 +11,13 @@ jobs: strategy: matrix: os: [windows-latest, macos-latest, ubuntu-latest] - go: ["1.15", "1.16"] + go: + - "1.15" + - "1.16" + - "1.17" + - "1.18" + - "1.19" + - "1.20" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2