Electra Coury
Electra Coury
I'm having the same problem... 😢
I've found a solution, it's not super satisfactory, but seems to work in circleci: ```go get github.com/golangci/golangci-lint/cmd/golangci-lint@de1d1ad``` It came from this: https://github.com/golang/go/issues/31148
Thanks for this. I tried it out again to see if the issue was resolved by your commit, but it's still happening... ``` go: github.com/Quasilyte/[email protected]: parsing go.mod: unexpected module path...
I can see that the latest changes to main have broken this PR. I will plan on fixing it on Friday.
I just found this issue, but I've already made a PR to do more or less this. https://github.com/actions/create-release/pull/89 It sets the tag and body from the changelog. It keeps the...
Actually I was being really dumb, I've worked out how to do the encoding properly now (i.e. without json.Marshal).
@rs I would love to hear your thoughts on this. I am using `MarshalMultiStack` from my own fork for now and it has fixed the problem of the incomplete stacktrace...
@rs have you had a chance to look at this? Thanks! :)
@rs I'd love to hear your thoughts on this.
I'm getting the same issue. Here is a really simple test to reproduce it (I'm running golang version 1.19): ``` package tmp_test import ( "testing" "github.com/spaolacci/murmur3" ) func TestMurmur3(t *testing.T)...