Merge pull request #209 from libranet/dependabot/pip/mypy-1.14.0 #446
This file contains hidden or 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: Linting | |
| env: | |
| POETRY_VERSION: "1.8.4" | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| run-tests: | |
| name: Python linters | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: Set up Poetry | |
| run: | | |
| pip install poetry==${{ env.POETRY_VERSION }} | |
| - name: Install | |
| run: | | |
| make install | |
| - name: Flake8 | |
| run: | | |
| make flake8 | |
| - name: Ruff | |
| run: | | |
| make ruff-check | |
| - name: Pylint | |
| run: | | |
| make pylint | |
| - name: Mypy | |
| run: | | |
| make mypy | |
| - name: Pyroma | |
| run: | | |
| make pyroma | |
| - name: Check poetry | |
| run: | | |
| make poetry-check | |
| make poetry-lock-check |