Github Actions: Remove --disable-tests
With --disable-tests, for example for Go the `make check` under `lib/go`
would only run unit tests under `lib/go/thrift` but not the unit tests
under `lib/go/test`.
Also some changes in lib/go/test/fuzz/Makefile.am so it works in both go
1.20 and 1.21 (The current state breaks in 1.21 but because of
`--disable-tests` we never noticed that).
diff --git a/lib/go/test/fuzz/go.mod b/lib/go/test/fuzz/go.mod
index 41cccc3..4ff6c5d 100644
--- a/lib/go/test/fuzz/go.mod
+++ b/lib/go/test/fuzz/go.mod
@@ -2,14 +2,6 @@
go 1.20
+require github.com/apache/thrift v0.0.0-00010101000000-000000000000
+
replace github.com/apache/thrift => ../../../../
-
-replace shared => ./gen-go/shared
-
-replace tutorial => ./gen-go/tutorial
-
-require (
- github.com/apache/thrift v0.0.0-00010101000000-000000000000
- shared v0.0.0-00010101000000-000000000000
- tutorial v0.0.0-00010101000000-000000000000
-)