Skip to content

Commit 668436d

Browse files
committed
ci: fix the go vet -tags invocation
This was originally quoted to see if the CI was permuting the flags correctly, but was never changed from a string into a process call. This amends that.
1 parent 4938b0f commit 668436d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/test/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
return $combinations
3232
}
3333
$tagValues | ForEach-Object {
34-
"go vet -tags=$_ ${commandPath}"
34+
go vet -tags="$_" "${commandPath}"
3535
}
3636
go test -cover ${commandPath}
3737
go test -race ${commandPath}

0 commit comments

Comments
 (0)