Skip to content

fix(deps): update dependency keras-tuner to v1.4.8 #1134

fix(deps): update dependency keras-tuner to v1.4.8

fix(deps): update dependency keras-tuner to v1.4.8 #1134

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
check:
- name: lint
run: make lint
- name: format
run: make format
# TODO: re-enable typecheck after fixing typechecking errors
# - name: typecheck
# run: make typecheck
- name: test
run: make test
# TODO: re-enable test-cov after fixing test coverage errors
# - name: test-cov
# run: make test-cov
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
id: setup-python
uses: ./.github/actions/setup-python-environment
with:
python-version: ${{ matrix.python-version }}
- name: Run check '${{ matrix.check.name }}'
run: ${{ matrix.check.run }}