Skip to content

Commit

Permalink
3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderDokuchaev committed Dec 17, 2024
1 parent 223ddd8 commit c5bf0aa
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@ 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
# 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
workflow_dispatch:

jobs:
pytest:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@ on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
pull_request:
types:
- opened
- reopened
- synchronize

jobs:
precommit:
strategy:
fail-fast: false
matrix:
python_version: ["3.9", "3.11", "3.12"]
python_version: ["3.9", "3.11", "3.12", "3.13"]
uses: ./.github/workflows/call_precommit.yml
with:
python_version: ${{ matrix.python_version }}
Expand Down

0 comments on commit c5bf0aa

Please sign in to comment.