11 lines
170 B
YAML
11 lines
170 B
YAML
|
on: push
|
||
|
jobs:
|
||
|
check:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- shell: sh
|
||
|
run: |
|
||
|
if [ -n "$PATH" ] ; then
|
||
|
echo "I'm sh!"
|
||
|
fi
|