From f643b6713aaf042ce7e48417279b99a521ec307c Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 12 Sep 2025 00:17:29 -0500 Subject: [PATCH] feat(ci); ruff on python files --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21d9968..890d288 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,3 +23,15 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} args: --display-style quiet . + + - name: Install uv + uses: astral-sh/setup-uv@v4 + + - name: Install ruff + run: uv tool install ruff + + - name: Check Python formatting with ruff + run: ruff format --check templates/scrapers/ + + - name: Lint Python files with ruff + run: ruff check templates/scrapers/