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