Skip to content

feat(codec/json): use json.Decoder with UseNumber to avoid losing pre… #41

feat(codec/json): use json.Decoder with UseNumber to avoid losing pre…

feat(codec/json): use json.Decoder with UseNumber to avoid losing pre… #41

Workflow file for this run

name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- '1.19'
- '1.20'
- '1.21'
- '1.22'
- '1.23'
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60
- name: Test
run: go test -race -cover ./...