Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github: add Go 1.22 testing #7005

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 11 additions & 12 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: '1.21'
go-version: '1.22'
- name: Checkout repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

Expand All @@ -46,32 +46,31 @@ jobs:
matrix:
include:
- type: vet
goversion: '1.21'
goversion: '1.22'

- type: extras
goversion: '1.22'

- type: tests
goversion: '1.21'
goversion: '1.22'

- type: tests
goversion: '1.21'
goversion: '1.22'
testflags: -race

- type: tests
goversion: '1.21'
goversion: '1.22'
goarch: 386

- type: tests
goversion: '1.21'
goversion: '1.22'
goarch: arm64

- type: tests
goversion: '1.20'

- type: tests
goversion: '1.19'

- type: extras
goversion: '1.21'

- type: tests
goversion: '1.20'
steps:
# Setup the environment.
- name: Setup GOARCH
Expand Down
Loading