mirror of
https://github.com/hacksider/Deep-Live-Cam.git
synced 2026-06-06 12:33:54 +02:00
ba27b75265
Swap the manual pip install + ruff check steps for astral-sh/ruff-action@v4.0.0. Same pinned ruff 0.15.7, but with --output-format=github so violations appear as inline annotations on the PR diff instead of a flat log. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
17 lines
280 B
YAML
17 lines
280 B
YAML
name: ruff
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
ruff:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: astral-sh/ruff-action@v4.0.0
|
|
with:
|
|
version: "0.15.7"
|
|
args: "check --output-format=github"
|