Skip to content

Commit

Permalink
Add python3.11 workflows to tf 2.13 and 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
reuvenp committed Oct 31, 2023
1 parent 94f68e1 commit fa5aa47
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/run_tests_python311_keras212.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Python 3.11, Keras 2.12
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *
pull_request:
branches:
- main


jobs:
run-tests:
uses: ./.github/workflows/run_keras_tests.yml
with:
python-version: "3.11"
tf-version: "2.12.*"
16 changes: 16 additions & 0 deletions .github/workflows/run_tests_python311_keras213.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Python 3.11, Keras 2.13
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *
pull_request:
branches:
- main


jobs:
run-tests:
uses: ./.github/workflows/run_keras_tests.yml
with:
python-version: "3.11"
tf-version: "2.13.*"

0 comments on commit fa5aa47

Please sign in to comment.