Skip to content

feat(validation): add machine-readable Code and Params to ErrorDetail #1412

feat(validation): add machine-readable Code and Params to ErrorDetail

feat(validation): add machine-readable Code and Params to ErrorDetail #1412

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request: { }
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ 1.25, 1.26 ]
name: Build & Test
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.9.0
- run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}