Skip to content

Update keras requirement from ^2.13.1 to ^3.3.3 #252

Update keras requirement from ^2.13.1 to ^3.3.3

Update keras requirement from ^2.13.1 to ^3.3.3 #252

Workflow file for this run

name: unittests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- uses: snok/install-poetry@v1
with:
version: 1.8.2
virtualenvs-create: true
virtualenvs-in-project: true
- run: poetry install
- run: poetry run pytest --cov=./ --cov-report=xml -v --disable-warnings
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
verbose: true