Skip to content

Bump python-levenshtein from 0.20.9 to 0.21.1 #193

Bump python-levenshtein from 0.20.9 to 0.21.1

Bump python-levenshtein from 0.20.9 to 0.21.1 #193

name: quality-checks
on: [pull_request]
jobs:
pylint-flake8-black-isort:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
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 requirements
run: |
python -m pip install --upgrade pip
pip install -r dev_requirements.txt
pip install -e .
- name: Analysing the code with pylint
run: pylint src/
- name: Analysing the code with black
run: black --check $(git ls-files '**/*.py')
- name: Analysing the code with flake8
run: flake8 $(git ls-files '**/*.py')
- name: Analysing the code with isort
run: isort --check $(git ls-files '**/*.py')