We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 360c9e3 + 473c10f commit 1ba7f5bCopy full SHA for 1ba7f5b
.github/workflows/test.yml
@@ -24,6 +24,11 @@
24
{
25
"name": "Test",
26
"run": "go test -v ./..."
27
+ },
28
+ {
29
+ "name": "Test on 32bit",
30
+ "if": "runner.os == 'Linux'",
31
+ "run": "GOARCH=386 go test -v ./..."
32
}
33
]
34
error_test.go
@@ -122,7 +122,7 @@ func TestParseError(t *testing.T) {
122
},
123
124
&struct{ Int int }{},
125
- fmt.Sprintf("Int = %d", uint(math.MaxInt64+1)),
+ fmt.Sprintf("Int = %d", uint64(math.MaxInt64+1)),
126
`| toml: error: 9223372036854775808 is out of range for int64
127
|
128
| At line 1, column 6-25:
0 commit comments