We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51563ef commit 1eeea0bCopy full SHA for 1eeea0b
test/testshared/runner.go
@@ -372,12 +372,12 @@ func InstallGolangciLint(tb testing.TB) string {
372
373
// TODO(ldez) remove when we will run go1.23 on the CI.
374
func forceDisableUnsupportedLinters(args []string) []string {
375
+ result := slices.Clone(args)
376
+
377
if !isGoLessThan("1.22") {
- return args
378
+ return append(result, "--go=1.22")
379
}
380
- result := slices.Clone(args)
-
381
if len(result) == 0 {
382
return append(result, "-D", "intrange,copyloopvar")
383
0 commit comments