Bump setuptools from 82.0.1 to 83.0.0 #211
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: External integrations | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| external: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v4 | |
| with: | |
| enable-cache: true | |
| - run: uv sync --group dev | |
| - name: TensorBoard | |
| run: uv run --with tensorflow --with tensorboard pytest tests/external_test_tensorboard.py | |
| - name: Keras | |
| run: uv run --with keras --with tensorflow pytest tests/external_test_keras.py | |
| - name: PyTorch Ignite | |
| run: uv run --with pytorch-ignite pytest tests/external_test_pytorch_ignite.py | |
| - name: Poutyne | |
| run: uv run --with poutyne pytest tests/external_test_poutyne.py | |
| - name: Notebook examples | |
| run: uv run pytest tests/external_test_examples.py |