Skip to content

Commit a5f690f

Browse files
committed
Add Keras
1 parent 1092071 commit a5f690f

File tree

4 files changed

+72
-0
lines changed

4 files changed

+72
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Backward Compatibility Test - Tensorflow 2.14 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-comp-tensorflow-2_14-v1_6_0:
14+
uses: ./.github/workflows/compatibility_keras_tests.yml
15+
with:
16+
save_version: "v1.6.0"
17+
python_version: "3.10"
18+
tf_version: "2.14.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Backward Compatibility Test - Tensorflow 2.15 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-comp-tensorflow-2_15-v1_6_0:
14+
uses: ./.github/workflows/compatibility_keras_tests.yml
15+
with:
16+
save_version: "v1.6.0"
17+
python_version: "3.10"
18+
tf_version: "2.15.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Forward Compatibility Test - Tensorflow 2.14 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-forward-comp-tensorflow-2_14-v1_6_0:
14+
uses: ./.github/workflows/forward_compatibility_keras_tests.yml
15+
with:
16+
load_version: "v1.6.0"
17+
python_version: "3.10"
18+
tf_version: "2.14.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Forward Compatibility Test - Tensorflow 2.15 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-forward-comp-tensorflow-2_15-v1_6_0:
14+
uses: ./.github/workflows/forward_compatibility_keras_tests.yml
15+
with:
16+
load_version: "v1.6.0"
17+
python_version: "3.10"
18+
tf_version: "2.15.*"

0 commit comments

Comments
 (0)