Bump keras from 2.14.0 to 3.10.0 #4895
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: CI PyTorch | |
on: | |
# Run on manual trigger | |
workflow_dispatch: | |
# Run on pull requests | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
# Run on merge queue | |
merge_group: | |
# Run when pushing to main or dev branches | |
push: | |
branches: | |
- main | |
- dev* | |
# Run scheduled CI flow daily | |
schedule: | |
- cron: '0 8 * * 0' | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: PyTorch 2.6.0 (Python 3.10) | |
framework: pytorch | |
python: '3.10' | |
torch: 2.6.0 | |
torchvision: 0.21.0 | |
torchaudio: 2.6.0 | |
- name: PyTorch 2.7.0 (Python 3.10) | |
framework: pytorch | |
python: '3.10' | |
torch: 2.7.0 | |
torchvision: 0.22.0 | |
torchaudio: 2.7.0 | |
name: ${{ matrix.name }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y -q install ffmpeg libavcodec-extra | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -q -r <(sed '/^mxnet/d' requirements_test.txt) | |
pip install torch==${{ matrix.torch }} --index-url https://download.pytorch.org/whl/cpu | |
pip install torchvision==${{ matrix.torchvision }} --index-url https://download.pytorch.org/whl/cpu | |
pip install torchaudio==${{ matrix.torchaudio }} --index-url https://download.pytorch.org/whl/cpu | |
pip list | |
- name: Run Tests | |
run: ./run_tests.sh ${{ matrix.framework }} | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true |