mirror of https://code.forgejo.org/forgejo/act
15 lines
345 B
YAML
15 lines
345 B
YAML
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: ''
|