We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68b8bb8 commit e60dc82Copy full SHA for e60dc82
.github/workflows/0_manual-precommit.yml
@@ -0,0 +1,19 @@
1
+name: manual-precommit
2
+permissions: read-all
3
+
4
+on:
5
+ workflow_dispatch:
6
+ paths-ignore:
7
+ - '**/*.md'
8
+ - 'docs/**/*'
9
+ - 'tests/post_training/*' # post_training tests runs on Jenkins
10
+ - 'tests/torch/sota_checkpoints_eval.json' # reference for PT e2e
11
+ - 'tests/tensorflow/sota_checkpoints_eval.json' # reference for TF e2e
12
+ - 'tests/cross_fw/examples/*' # examples tests runs in separate workflow
13
14
+jobs:
15
+ pytest:
16
+ uses: ./.github/workflows/call_precommit.yml
17
+ with:
18
+ python_version: "3.10.14"
19
+ gpu_enabled: true
0 commit comments