e9ae7894e3
* fix: set default shell for containers to sh This matches GitHub Actions behaviour where, runners use bash since it's guaranteed to exist there while containers use sh for compatibility * tests: fixup for default shell
23 lines
434 B
YAML
23 lines
434 B
YAML
on: push
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- shell: sh
|
|
run: |
|
|
if [ -z ${BASH+x} ]; then
|
|
echo "I'm sh!"
|
|
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
|
|
fi
|