updated workflow

This commit is contained in:
Alishahryar1 2026-02-15 01:18:51 -08:00
parent 96e6765315
commit 830840f98f

View file

@ -27,9 +27,6 @@ jobs:
- name: Run tests
run: uv run pytest -v --tb=short
- name: Type check
run: uv run ty check
- name: "Fail on type: ignore (no suppressions allowed)"
run: |
if grep -rE '# type: ignore|# ty: ignore' --include='*.py' . --exclude-dir=.venv --exclude-dir=.git; then
@ -38,11 +35,12 @@ jobs:
fi
exit 0
- name: Format
run: uv run ruff format
- name: Type check
run: uv run ty check
- name: Commit and push formatting changes
- 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