Skip to content

Commit

Permalink
Update test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
uschmidt83 committed Apr 25, 2024
1 parent 6606407 commit 8269b92
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs
os: [ubuntu-20.04, windows-latest, macos-13]
os: [ubuntu-20.04, windows-latest, macos-latest] # macos-latest is arm64-based
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
tensorflow: [1, 2]
include:
Expand All @@ -40,6 +40,10 @@ jobs:
package-extras: 'test'
deps-extra: 'tf_keras'
exec-extra: 'echo "TF_USE_LEGACY_KERAS=1" >> $GITHUB_ENV'
- os: macos-13 # x86_64-based runner
python-version: '>=3.12 <3.13' # intentionally be different than '3.12' to cause an additional combination
tensorflow: 2
package-extras: 'test'
exclude:
# https://www.tensorflow.org/install/source#tested_build_configurations
- python-version: '3.8'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/tests_cron.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs
os: [ubuntu-20.04, windows-latest, macos-13]
os: [ubuntu-20.04, windows-latest, macos-latest] # macos-latest is arm64-based
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
tensorflow: [1, 2]
include:
Expand All @@ -35,6 +35,10 @@ jobs:
package-extras: 'test'
deps-extra: 'tf_keras'
exec-extra: 'echo "TF_USE_LEGACY_KERAS=1" >> $GITHUB_ENV'
- os: macos-13 # x86_64-based runner
python-version: '>=3.12 <3.13' # intentionally be different than '3.12' to cause an additional combination
tensorflow: 2
package-extras: 'test'
exclude:
# https://www.tensorflow.org/install/source#tested_build_configurations
- python-version: '3.8'
Expand Down

0 comments on commit 8269b92

Please sign in to comment.