Skip to content

Commit c5bf0aa

Browse files
3.13
1 parent 223ddd8 commit c5bf0aa

File tree

2 files changed

+19
-13
lines changed

2 files changed

+19
-13
lines changed

.github/workflows/precommit.yml

+13-12
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@ name: precommit
22
permissions: read-all
33

44
on:
5-
pull_request:
6-
types:
7-
- opened
8-
- reopened
9-
- synchronize
10-
paths-ignore:
11-
- '**/*.md'
12-
- 'docs/**/*'
13-
- 'tests/post_training/*' # post_training tests runs on Jenkins
14-
- 'tests/torch/sota_checkpoints_eval.json' # reference for PT e2e
15-
- 'tests/tensorflow/sota_checkpoints_eval.json' # reference for TF e2e
16-
- 'tests/cross_fw/examples/*' # examples tests runs in separate workflow
5+
# pull_request:
6+
# types:
7+
# - opened
8+
# - reopened
9+
# - synchronize
10+
# paths-ignore:
11+
# - '**/*.md'
12+
# - 'docs/**/*'
13+
# - 'tests/post_training/*' # post_training tests runs on Jenkins
14+
# - 'tests/torch/sota_checkpoints_eval.json' # reference for PT e2e
15+
# - 'tests/tensorflow/sota_checkpoints_eval.json' # reference for TF e2e
16+
# - 'tests/cross_fw/examples/*' # examples tests runs in separate workflow
17+
workflow_dispatch:
1718

1819
jobs:
1920
pytest:

.github/workflows/weekly.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@ on:
55
workflow_dispatch:
66
schedule:
77
- cron: '0 0 * * 0'
8+
pull_request:
9+
types:
10+
- opened
11+
- reopened
12+
- synchronize
813

914
jobs:
1015
precommit:
1116
strategy:
1217
fail-fast: false
1318
matrix:
14-
python_version: ["3.9", "3.11", "3.12"]
19+
python_version: ["3.9", "3.11", "3.12", "3.13"]
1520
uses: ./.github/workflows/call_precommit.yml
1621
with:
1722
python_version: ${{ matrix.python_version }}

0 commit comments

Comments
 (0)