fix: #616 - JSON parsing of ints to float64 (#617)

This commit is contained in:
James Read
2025-07-12 23:02:50 +01:00
committed by GitHub
parent 260477e5e8
commit 54447774d1
8 changed files with 115 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ compile-x64-win:
compile: compile-armhf compile-x64-lin compile-x64-win
codestyle:
codestyle: go-tools
go fmt ./...
go vet ./...
gocyclo -over 4 internal
@@ -39,6 +39,10 @@ unittests:
go tool cover -html=reports/unittests.out -o reports/unittests.html
go-tools:
go install "github.com/fzipp/gocyclo/cmd/gocyclo"
go install "github.com/go-critic/go-critic/cmd/gocritic"
go-tools-all:
go install "github.com/bufbuild/buf/cmd/buf"
go install "github.com/fzipp/gocyclo/cmd/gocyclo"
go install "github.com/go-critic/go-critic/cmd/gocritic"