Skip to content

Include overflowing value in the error message #156

Include overflowing value in the error message

Include overflowing value in the error message #156

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.24.0']
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.64.5
args: --timeout=5m
- name: Build
run: make build