ci: basic github action for coverage (#537)

This commit is contained in:
Thomas Pelletier
2021-05-09 17:37:03 -04:00
committed by GitHub
parent 45ea20024b
commit 3db329a512
5 changed files with 256 additions and 65 deletions
+4 -5
View File
@@ -838,15 +838,14 @@ B = "data"`,
},
{
desc: "mismatch types array of int to interface with non-slice",
input: `A = [[42]]`,
skip: true,
input: `A = [42]`,
gen: func() test {
type S struct {
A *string
A string
}
return test{
target: &S{},
expected: &S{},
target: &S{},
err: true,
}
},
},