2021-06-10 18:12:05 -05:00
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- shell: sh
|
|
|
|
run: |
|
2021-11-03 13:47:47 -05:00
|
|
|
if [ -z ${BASH+x} ]; then
|
2021-06-10 18:12:05 -05:00
|
|
|
echo "I'm sh!"
|
2021-11-03 13:47:47 -05:00
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
check-container:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: alpine:latest
|
|
|
|
steps:
|
|
|
|
- shell: sh
|
|
|
|
run: |
|
|
|
|
if [ -z ${BASH+x} ]; then
|
|
|
|
echo "I'm sh!"
|
|
|
|
else
|
|
|
|
exit 1
|
2021-06-10 18:12:05 -05:00
|
|
|
fi
|