Files
pj0333-full-duplex/.github/workflows/ruff.yml
T
Tobias Fried e129da7cd1 chore(deps): pin sdk dependencies to patch version (#77)
* chore(deps): pin sdk dependencies to patch

* chore(ci): use python3.14 in CI

* feat(ci): auto-tag when sdk version change merged to main

* chore(ci): use actions/checkout@v6
2026-05-22 15:35:16 -06:00

34 lines
610 B
YAML

name: Ruff
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ruff-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v1
with:
version: "latest"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: UV_GIT_LFS=1 uv sync --dev
- name: Run ruff linter
run: uv run ruff check --output-format=github .
- name: Run ruff formatter
run: uv run ruff format --check --diff .