Skip to content

chore: Update Golang version in GitHub "release" workflow to 1.23.6 #974

chore: Update Golang version in GitHub "release" workflow to 1.23.6

chore: Update Golang version in GitHub "release" workflow to 1.23.6 #974

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.23.6
- name: Check out source code
uses: actions/checkout@v4
- name: Build
run: make build
- name: Test
run: make test