diff options
| -rw-r--r-- | .github/workflows/lint.yml | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 99d752b..8d61f54 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,5 +15,8 @@ jobs:        with:          python_version: '3.11' +    - name: Run pre-commit hooks +      run: SKIP=ruff pre-commit run --all-files +      - name: Lint code with ruff        run: ruff check --format=github . | 
