Skip to content

Bump Go version from 1.24.0 to 1.25.1 #309

Bump Go version from 1.24.0 to 1.25.1

Bump Go version from 1.24.0 to 1.25.1 #309

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Run tests
run: make test
- name: Run build
run: make build