mirror of https://github.com/nektos/act
26 lines
500 B
YAML
26 lines
500 B
YAML
on: push
|
|
env:
|
|
MY_SHELL: pwsh
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- shell: ${{ env.MY_SHELL }}
|
|
run: |
|
|
$PSVersionTable
|
|
check-container:
|
|
runs-on: ubuntu-latest
|
|
container: catthehacker/ubuntu:pwsh-latest
|
|
steps:
|
|
- shell: ${{ env.MY_SHELL }}
|
|
run: |
|
|
$PSVersionTable
|
|
check-job-default:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
shell: ${{ env.MY_SHELL }}
|
|
steps:
|
|
- run: |
|
|
$PSVersionTable
|