Bump types-setuptools from 75.2.0.20241025 to 75.5.0.20241116 #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Reviewdog | |
on: [pull_request] | |
jobs: | |
Reviewdog: | |
name: Reviewdog | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install mypy | |
run: pip install mypy | |
- name: Install requirements | |
run: pip install -r requirements/dev.txt | |
- name: Run MyPy | |
uses: tsuyoshicho/action-mypy@v4 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
level: error | |
fail_on_error: false | |
target: src | |
- name: Run PyLint | |
uses: dciborow/[email protected] | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
level: error | |
glob_pattern: src | |
fail_on_error: false |