Skip to content

Upgraded tools to latest, minimum go version to 1.25 (#279) #121

Upgraded tools to latest, minimum go version to 1.25 (#279)

Upgraded tools to latest, minimum go version to 1.25 (#279) #121

Workflow file for this run

name: errcheck
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
go: ["1.25.x", "1.26.x"]
name: go ${{ matrix.go }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...