Skip to content

Commit

Permalink
ci: fix the go vet -tags invocation
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
djdv committed Mar 30, 2024
1 parent 4938b0f commit 668436d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
return $combinations
}
$tagValues | ForEach-Object {
"go vet -tags=$_ ${commandPath}"
go vet -tags="$_" "${commandPath}"
}
go test -cover ${commandPath}
go test -race ${commandPath}

0 comments on commit 668436d

Please sign in to comment.