diff --git a/.github/workflows/check-lint.yml b/.github/workflows/check-lint.yml index 948a83e..f42712e 100644 --- a/.github/workflows/check-lint.yml +++ b/.github/workflows/check-lint.yml @@ -11,7 +11,7 @@ on: - 'release/**' jobs: - test: + lint: runs-on: ubuntu-latest steps: #---------------------------------------------- @@ -62,10 +62,10 @@ jobs: #---------------------------------------------- - name: Analysing the code with mypy run: | - mypy . + poetry run mypy . - name: Analysing the code with flake8 run: | - flake8 + poetry run flake8 - name: Analysing code with isort run: | - isort --check-only app \ No newline at end of file + poetry run isort --check-only app \ No newline at end of file