From 820eb00cd100875fa7ccb4e43ce01cf4f6626f56 Mon Sep 17 00:00:00 2001 From: ok-nick <25470747+ok-nick@users.noreply.github.com> Date: Mon, 22 Aug 2022 13:53:06 -0400 Subject: [PATCH] Test executables in PATH on powershell --- .github/actions/test/action.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 28aa855..6a8ae36 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -32,10 +32,16 @@ runs: path: ${{ inputs.path }} token: ${{ inputs.token }} - - name: Verify executables in PATH + - name: Verify executables in PATH on Bash run: | if ! hash selene stylua rojo 2>/dev/null; then exit 1; fi shell: bash + - name: verify executables in PATH on Powershell + run: | + if ! hash selene stylua rojo 2>/dev/null; then + exit 1; + fi + shell: powershell