Skip to content

Upgrade Golang version to 1.24.6 #890

Upgrade Golang version to 1.24.6

Upgrade Golang version to 1.24.6 #890

Workflow file for this run

name: ci
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
go-version: 1.24.6
- name: Test
run: |
make check-fmt
make build
make check
make test-race
make bench-race