Skip to content

Bump golang version to 1.24.1 #1037

Bump golang version to 1.24.1

Bump golang version to 1.24.1 #1037

Workflow file for this run

name: Build and test Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.24.1
- name: Check out source code
uses: actions/checkout@v4
- name: Build
run: make build
- name: Test
run: make test