testing: update Go versions tested to 1.19-1.21 (#6543)

This commit is contained in:
Doug Fawley 2023-08-11 10:00:36 -07:00 committed by GitHub
parent 879faf6bb2
commit c2bc22c7b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 10 deletions

View File

@ -26,7 +26,7 @@ jobs:
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v3 uses: actions/setup-go@v3
with: with:
go-version: '1.20' go-version: '1.21'
- name: Checkout repo - name: Checkout repo
uses: actions/checkout@v3 uses: actions/checkout@v3
@ -46,31 +46,31 @@ jobs:
matrix: matrix:
include: include:
- type: vet - type: vet
goversion: '1.20' goversion: '1.21'
- type: tests - type: tests
goversion: '1.20' goversion: '1.21'
- type: tests - type: tests
goversion: '1.20' goversion: '1.21'
testflags: -race testflags: -race
- type: tests - type: tests
goversion: '1.20' goversion: '1.21'
goarch: 386 goarch: 386
- type: tests - type: tests
goversion: '1.20' goversion: '1.21'
goarch: arm64 goarch: arm64
- type: tests
goversion: '1.20'
- type: tests - type: tests
goversion: '1.19' goversion: '1.19'
- type: tests
goversion: '1.18'
- type: extras - type: extras
goversion: '1.20' goversion: '1.21'
steps: steps:
# Setup the environment. # Setup the environment.