blob: cbc039557da416e5ee47ed7fb86dc76ab1dbc4d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
on: push
jobs:
check:
runs-on: ubuntu-latest
steps:
# prints version and exits, it's not valid (for github) if {0} is not included
- shell: pwsh -v '. {0}'
run: ''
check-container:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:pwsh-latest
steps:
- shell: pwsh -v '. {0}'
run: ''
|