[GHA] trigger for scheduled jobs #4868
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: precommit | |
permissions: read-all | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
paths-ignore: | |
- '**/*.md' | |
- 'docs/**/*' | |
- 'tests/post_training/*' # post_training tests runs on Jenkins | |
- 'tests/torch/sota_checkpoints_eval.json' # reference for PT e2e | |
- 'tests/tensorflow/sota_checkpoints_eval.json' # reference for TF e2e | |
- 'tests/cross_fw/examples/*' # examples tests runs in separate workflow | |
jobs: | |
pytest: | |
uses: ./.github/workflows/call_precommit.yml | |
with: | |
python_version: "3.10.14" | |
gpu_enabled: true |