12 lines
161 B
YAML
12 lines
161 B
YAML
|
name: powershell
|
||
|
on: push
|
||
|
|
||
|
env:
|
||
|
TEST: value
|
||
|
jobs:
|
||
|
check:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- shell: pwsh
|
||
|
run: |
|
||
|
echo "hello test"
|