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/