Skip to content

Commit fcbf21f

Browse files
committed
remove pylint, simplefy ruff
1 parent c401596 commit fcbf21f

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/lint.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,13 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install ruff mypy pylint tld types-redis types-requests python-dateutil
26+
pip install ruff tld types-redis types-requests python-dateutil whodap
2727
2828
- name: Run ruff format check
29-
run: ruff format --check *.py whoisdomain/
29+
run: ruff format --check whoisdomain/
3030

3131
- name: Run ruff lint
32-
run: ruff check *.py whoisdomain/
33-
34-
- name: Run mypy (strict)
35-
run: mypy --strict --no-incremental *.py whoisdomain/
32+
run: ruff check whoisdomain/
3633

3734
test:
3835
name: Test on Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)