Skip to content

Commit

Permalink
Add workflows for Pytorch 2.4 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ofir Gordon authored and Ofir Gordon committed Sep 3, 2024
1 parent 598caeb commit 9709613
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/run_tests_python310_pytorch24.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Python 3.10, Pytorch 2.4
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *
pull_request:
branches:
- main


jobs:
run-tests:
uses: ./.github/workflows/run_pytorch_tests.yml
with:
python-version: "3.10"
torch-version: "2.4.*"
16 changes: 16 additions & 0 deletions .github/workflows/run_tests_python311_pytorch24.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Python 3.11, Pytorch 2.4
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *
pull_request:
branches:
- main


jobs:
run-tests:
uses: ./.github/workflows/run_pytorch_tests.yml
with:
python-version: "3.11"
torch-version: "2.4.*"
16 changes: 16 additions & 0 deletions .github/workflows/run_tests_python39_pytorch24.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Python 3.9, Pytorch 2.4
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *
pull_request:
branches:
- main


jobs:
run-tests:
uses: ./.github/workflows/run_pytorch_tests.yml
with:
python-version: "3.9"
torch-version: "2.4.*"

0 comments on commit 9709613

Please sign in to comment.