Skip to content

Bump ruff from 0.15.22 to 0.16.1 #1217

Bump ruff from 0.15.22 to 0.16.1

Bump ruff from 0.15.22 to 0.16.1 #1217

Workflow file for this run

name: HVCC CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v7
with:
lfs: true
submodules: true
- name: Initialize lfs
run: git lfs pull
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -U tox tox-gh-actions poetry
- name: Run tox
run: tox
test-arm:
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v7
with:
lfs: true
submodules: true
- name: Initialize lfs
run: git lfs pull
- name: Set up Python 3.12
uses: actions/setup-python@v7
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -U tox tox-gh-actions poetry
- name: Run tox
run: tox
dispatch:
needs: [test, test-arm]
strategy:
matrix:
repo: ['Wasted-Audio/hvcc-examples-dpf', 'Wasted-Audio/hvcc-examples-js']
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v4
with:
token: ${{ secrets.HVCC_REPOSITORY_DISPATCH_TOKEN }}
repository: ${{ matrix.repo }}
event-type: nightly
client-payload: '{"nightly": true, "branch": "develop"}'
if: ${{ github.ref == 'refs/heads/develop' }}