Removed formatter workflow

This commit is contained in:
Alishahryar1 2026-02-15 19:20:39 -08:00
parent ae0145f933
commit c36c07a8ce

View file

@ -43,31 +43,3 @@ jobs:
- name: Run tests
run: uv run pytest -v --tb=short
format:
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [checks]
permissions:
contents: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
ref: ${{ github.head_ref || github.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
fetch-depth: 1
- name: Install uv
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b
with:
version: "0.10.2"
enable-cache: true
cache-python: true
- name: Commit and push changes
run: |
uv run ruff format
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add -A
git diff --staged --quiet || (git commit -m "style: apply ruff format" && git push)