diff options
author | Chris Koch <chrisko@google.com> | 2023-02-18 14:59:56 -0800 |
---|---|---|
committer | Chris Koch <chrisko@google.com> | 2023-02-18 14:59:56 -0800 |
commit | 2acb6cd6b63626c3c23f022770680eaf294aaae6 (patch) | |
tree | c24cf6d9c107d40c4c02f94355af49fcbc6c0660 /.github/workflows | |
parent | de60144f33f85759f7fa958664a53342af3bafa1 (diff) |
Add support for Go up to 1.20
Signed-off-by: Chris Koch <chrisko@google.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/tests.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2777592..cbd4580 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ['1.13', '1.14', '1.15', '1.16'] + go: ['1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20'] env: GO111MODULE: on steps: @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ['1.13', '1.14', '1.15', '1.16'] + go: ['1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20'] env: GO111MODULE: on steps: |