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
17 lines
361 B
YAML
17 lines
361 B
YAML
on: push
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- shell: python
|
|
run: |
|
|
import platform
|
|
print(platform.python_version())
|
|
check-container:
|
|
runs-on: ubuntu-latest
|
|
container: node:12-buster
|
|
steps:
|
|
- shell: python
|
|
run: |
|
|
import platform
|
|
print(platform.python_version())
|