2021-06-10 18:12:05 -05:00
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- shell: python
|
|
|
|
run: |
|
|
|
|
import platform
|
|
|
|
print(platform.python_version())
|
2021-11-03 13:47:47 -05:00
|
|
|
check-container:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: node:12-buster
|
|
|
|
steps:
|
|
|
|
- shell: python
|
|
|
|
run: |
|
|
|
|
import platform
|
|
|
|
print(platform.python_version())
|