From 1f78882cdc80011a86dfeb866b08dd46f3004121 Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Mon, 29 Apr 2024 11:27:16 +0200 Subject: [PATCH] Go: make windows checks happy --- go/actions/test/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go/actions/test/action.yml b/go/actions/test/action.yml index ade22410d957..a351c4382ac9 100644 --- a/go/actions/test/action.yml +++ b/go/actions/test/action.yml @@ -33,7 +33,7 @@ runs: - name: Build shell: bash run: | - bazel run //go:create-extractor-pack + bazel run go:create-extractor-pack - name: Check that all Go code is autoformatted if: inputs.run-code-checks == 'true' @@ -46,7 +46,7 @@ runs: if: inputs.run-code-checks == 'true' shell: bash run: | - bazel run //go:gen + bazel run go:gen git add . git diff --exit-code HEAD || ( echo "please run bazel run //go:gen"