Skip to content

Some more cleanup; check all possible errors #38

Some more cleanup; check all possible errors

Some more cleanup; check all possible errors #38

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ['>=1.24.9 <1.25.0', '1.25']
defaults:
run:
working-directory: go
steps:
- uses: actions/checkout@v5
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -v