[Bug, Update]: tf.keras.Sequential error, uv, ruff, python 3.10, 3.11, 3.12, 3.13 #462
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: tests general | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 4 | |
| matrix: | |
| include: | |
| # Matches tox.ini (non-torch envs only) | |
| - python-version: "3.10" | |
| toxenv: py310-tf218 | |
| - python-version: "3.10" | |
| toxenv: py310-tf219 | |
| - python-version: "3.10" | |
| toxenv: py310-tf220 | |
| - python-version: "3.11" | |
| toxenv: py311-tf218 | |
| - python-version: "3.11" | |
| toxenv: py311-tf219 | |
| - python-version: "3.11" | |
| toxenv: py311-tf220 | |
| - python-version: "3.12" | |
| toxenv: py312-tf218 | |
| - python-version: "3.12" | |
| toxenv: py312-tf219 | |
| - python-version: "3.12" | |
| toxenv: py312-tf220 | |
| - python-version: "3.13" | |
| toxenv: py313-tf220 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install dependencies | |
| run: | | |
| uv pip install --system tox tox-uv | |
| - name: Test with tox (${{ matrix.toxenv }}) | |
| run: tox -e ${{ matrix.toxenv }} |