Skip to content

add pylint and mypy to dev-dependencies. #4

add pylint and mypy to dev-dependencies.

add pylint and mypy to dev-dependencies. #4

Workflow file for this run

name: Pylint
on: [ push,pull_request ]
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python "3.10"
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint mypy
- name: Analysing the code with pylint
run: |
pylint ./supervised --fail-under=6
- name: Black + pylint
run: |
mypy .
continue-on-error: true