* fix: tests with validation errors were skipped * fixup * [no ci] fix one test * fix some tests * fix last test --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
26 lines
470 B
YAML
26 lines
470 B
YAML
on: push
|
|
env:
|
|
MY_SHELL: pwsh
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- shell: pwsh
|
|
run: |
|
|
$PSVersionTable
|
|
check-container:
|
|
runs-on: ubuntu-latest
|
|
container: catthehacker/ubuntu:pwsh-latest
|
|
steps:
|
|
- shell: pwsh
|
|
run: |
|
|
$PSVersionTable
|
|
check-job-default:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
shell: ${{ env.MY_SHELL }}
|
|
steps:
|
|
- run: |
|
|
$PSVersionTable
|