With go 1.11, something happened recently that started causing compile errors in some of the CI checks. But switching to go 1.13 resolves them ¯\(ツ)\/¯
While at it, I needed to change the args passed to predeclared. Strange that this didn't cause issues in previous CI checks, but I got errors when I tried to run it that it does not like to receive a mix of files and directories -- it either wants directory/package references or a list of files. It was previously getting a mix and then complaining that the directory names did not end in .go.
This should fix the red build in CI.
With go 1.11, something happened recently that started causing compile errors in some of the CI checks. But switching to go 1.13 resolves them ¯\(ツ)\/¯
While at it, I needed to change the args passed to
predeclared
. Strange that this didn't cause issues in previous CI checks, but I got errors when I tried to run it that it does not like to receive a mix of files and directories -- it either wants directory/package references or a list of files. It was previously getting a mix and then complaining that the directory names did not end in.go
.