ci: run pre-commit on all files in CI

This commit is contained in:
Fischer Moseley 2024-11-27 18:02:59 -08:00
parent fd98003db4
commit 4b26a8d599
1 changed files with 2 additions and 2 deletions

View File

@ -25,10 +25,10 @@ jobs:
# Install Manta, with optional dev-only dependencies
python3 -m pip install ".[dev]"
- name: Check formatting
- name: Run pre-commit against all files
run: |
source venv/bin/activate
python3 -m ruff format --check
pre-commit run --all-files
- name: Run tests
run: |