From 4254940607e82f10a99ac5b79fee2bf8acd17cb6 Mon Sep 17 00:00:00 2001 From: Yuri Norwood <106889957+norwd@users.noreply.github.com> Date: Mon, 7 Nov 2022 12:49:08 +1300 Subject: [PATCH] Try using exe for pwsh Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com> --- .github/workflows/selftest.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/selftest.yml b/.github/workflows/selftest.yml index 911cccc..64b5f1b 100644 --- a/.github/workflows/selftest.yml +++ b/.github/workflows/selftest.yml @@ -32,7 +32,8 @@ jobs: if: matrix.os == 'windows' shell: pwsh run: | - go test -json -v ./... 2>&1 | gotestfmt + echo "%PATH%" + go test -json -v ./... 2>&1 | gotestfmt.exe - name: Run gotestfmt working-directory: testdata