Skip to content

Commit

Permalink
add lint to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dec1 committed Jun 20, 2024
1 parent a923869 commit d15abd9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ jobs:
if: runner.os == 'Windows'
run: .\prj\venv\Scripts\mypy.exe --check-untyped-defs -p test -p src

#- name: Run linter with pylint (Linux)
# if: runner.os == 'Linux'
# run: ./prj/script/venv/bin/python -m pylint src
- name: Run linter with pylint (Linux)
if: runner.os == 'Linux'
run: ./prj/venv/bin/python -m pylint --errors-only src test

#- name: Run linter with pylint (Windows)
# if: runner.os == 'Windows'
# run: .\prj\venv\Scripts\python.exe -m pylint src
- name: Run linter with pylint (Windows)
if: runner.os == 'Windows'
run: .\prj\venv\Scripts\python.exe -m pylint src --errors-only src test

0 comments on commit d15abd9

Please sign in to comment.