We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71fb26c commit ce6091eCopy full SHA for ce6091e
.github/workflows/python-package.yml
@@ -22,10 +22,13 @@ jobs:
22
- name: Install dependencies
23
run: |
24
python -m pip install --upgrade pip
25
- python -m pip install black mypy
26
- - name: Check code formatting
+ python -m pip install ruff mypy
+ - name: Check Ruff linting
27
28
- black --check .
+ ruff check --extend-select I
29
+ - name: Check Ruff formatting
30
+ run: |
31
+ ruff format --check --line-length=120
32
- name: Check static typing
33
34
mypy --strict diffplus/
0 commit comments