fix(deps): update dependency keras-tuner to v1.4.8 #1134
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |