* fix: tests with validation errors were skipped * fixup * [no ci] fix one test * fix some tests * fix last test --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
29 lines
588 B
YAML
29 lines
588 B
YAML
on: push
|
|
env:
|
|
MY_SHELL: python
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- shell: python
|
|
run: |
|
|
import platform
|
|
print(platform.python_version())
|
|
check-container:
|
|
runs-on: ubuntu-latest
|
|
container: node:16-buster
|
|
steps:
|
|
- shell: python
|
|
run: |
|
|
import platform
|
|
print(platform.python_version())
|
|
check-job-default:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
shell: ${{ env.MY_SHELL }}
|
|
steps:
|
|
- run: |
|
|
import platform
|
|
print(platform.python_version())
|