Skip to content

[BREAKING CHANGE] deel-lip upgrade to Keras 3.0 #539

[BREAKING CHANGE] deel-lip upgrade to Keras 3.0

[BREAKING CHANGE] deel-lip upgrade to Keras 3.0 #539

Workflow file for this run

name: deel-lip tests
on:
push:
branches:
- master
- develop
pull_request:
schedule:
- cron: "0 2 * * 0" # Run tests every Sunday at 2am
jobs:
checks:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
include:
- python-version: "3.10"
tf-version: 2.17
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox (Python ${{ matrix.python-version }} - TensorFlow ${{ matrix.tf-version }})
run: tox -e py$(echo ${{ matrix.python-version }}-tf${{ matrix.tf-version }} | tr -d .)