-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add workflows to test tf2.14 * update tf version in pip test suite workflow --------- Co-authored-by: reuvenp <[email protected]>
- Loading branch information
1 parent
e1d7f11
commit 8cc9a52
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Run Backward Compatibility Test - Tensorflow 2.14 MCTQ v1.3.0 | ||
on: | ||
workflow_dispatch: # Allow manual triggers | ||
schedule: | ||
- cron: 0 0 * * * | ||
|
||
jobs: | ||
run-comp-tensorflow-2_14-v1_3: | ||
uses: ./.github/workflows/compatibility_keras_tests.yml | ||
with: | ||
save_version: "v1.3.0" | ||
python_version: "3.10" | ||
tf_version: "2.14.*" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Run Tests - Tensorflow 2.14 | ||
on: | ||
workflow_dispatch: # Allow manual triggers | ||
schedule: | ||
- cron: 0 0 * * * | ||
|
||
jobs: | ||
run-tensorflow-2_14: | ||
uses: ./.github/workflows/run_keras_tests.yml | ||
with: | ||
tf-version: "2.14.*" |