Skip to content

add mypy ad pylint

add mypy ad pylint #1

Workflow file for this run

name: Code quality
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint black mypy
pip install -r requirements.txt
- name: Analysing the code with PYLINT
run: |
pylint $(git ls-files '*.py')
- name: Analysing the code with BLACK
run: |
black --diff $(git ls-files '*.py')
- name: Analysing the code with MYPY
run: |
mypy --strict $(git ls-files '*.py')
- name: Run TEST script
run: bash run_all_tests.sh