/
githubmirror
/
act
Обзор
Документация
Войти
/
githubmirror
/
act
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pkg/runner/testdata/shells/python/push.yml
28 строк
588 B
ChristopherHX
fix: tests with validation errors were skipped (#2496)
28 окт 2024, 07:03
Не верифицирован
28 окт 2024, 07:03
2c0e3fe
Код
Авторство
О чём код?
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())