Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
miurahr committed Dec 15, 2024
1 parent 4c7dcc4 commit b878a30
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/run-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ jobs:
pip install .[check]
- name: Lint checks
run: |
flake8 py7zr tests | ./bin/reviewdog -f flake8 -reporter=github-check -fail-level=info
mypy py7zr | ./bin/reviewdog -f mypy -reporter=github-check -fail-level=warning
pylint **/*.py | ./bin/reviewdog -efm="%f:%l:%c: %m" -name="pylint" -reporter=github-check -fail-level=error -filter-mode=added
flake8 py7zr tests | ./bin/reviewdog -f flake8 -reporter=github-pr-check -level=error
mypy py7zr | ./bin/reviewdog -f mypy -reporter=github-pr-check -level=error
pylint **/*.py | ./bin/reviewdog -efm="%f:%l:%c: %m" -name="pylint" -reporter=github-pr-check -fail-level=error -level=warning
env:
REVIEWDOG_TOKEN: ${{ secrets.REVIEWDOG_TOKEN }}
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}

docs:
name: Document checks
Expand Down

0 comments on commit b878a30

Please sign in to comment.