Skip to content

Create third-party-programs.txt #173

Create third-party-programs.txt

Create third-party-programs.txt #173

Workflow file for this run

name: lint
on:
push:
branches:
- main
- 'release/**'
pull_request:
branches:
- main
- 'release/**'
permissions: read-all
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v6
- name: 'Set up Python 3.14'
uses: actions/setup-python@v6
with:
python-version: 3.14
- name: 'Install ruff'
run: |
python3 --version
# Just install ruff to avoid heavy installation of
# project dependencies (ffmpeg, oneapi, torch)
python3 -m pip install ruff
- name: 'Test with ruff'
run: |
ruff check -v