ci: use pwsh for tests on all platforms

This commit is contained in:
ok-nick 2023-08-03 12:02:53 -04:00
parent fcd6610c4a
commit d704935d05
No known key found for this signature in database
GPG key ID: E6F3F722530600D2

View file

@ -33,16 +33,16 @@ runs:
path: ${{ inputs.path }}
token: ${{ inputs.token }}
- name: Verify executables in PATH on Bash
- name: Verify executables in PATH on bash
run: |
if ! hash selene stylua rojo 2>/dev/null; then
exit 1;
fi
command -v selene
command -v stylua
command -v rojo
shell: bash
- name: Verify executables in PATH on PowerShell
- name: Verify executables in PATH on pwsh
run: |
Get-Command "selene"
Get-Command "stylua"
Get-Command "rojo"
shell: powershell
shell: pwsh