add workflow
All checks were successful
Go Action / goaction (push) Successful in 1m3s
Go Action / goaction (pull_request) Successful in 41s

This commit is contained in:
andrey
2025-12-24 00:12:33 +03:00
parent 779818e067
commit 05ed4eb281
5 changed files with 75 additions and 30 deletions

View File

@@ -44,8 +44,8 @@ func TestUnmarshalText(t *testing.T) {
for _, tc := range marshalTextTests {
var data bytesize.Size
err := json.Unmarshal([]byte(tc.expect), &data)
err := json.Unmarshal([]byte(tc.expect), &data)
if err != nil {
t.Errorf("json.Unmarshal(%q) = _, err:%q", tc.in, err)
} else if data != tc.in {