Skip to content

Commit

Permalink
Fix linting workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dandansamax committed Aug 29, 2023
1 parent 87488ea commit 3bdac71
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
python-version: "3.8"
- name: Run flake8 checks
run: |
peotry run flake8 .
poetry run flake8 .
- name: run isort checks
run: |
peotry run isort --check-only .
poetry run isort --check-only .
- name: Run mypy checks
run: |
mypy --install-types --non-interactive --namespace-packages -p camel
mypy --install-types --non-interactive --namespace-packages -p test
mypy --install-types --non-interactive --namespace-packages -p apps
poetry mypy --install-types --non-interactive --namespace-packages -p camel
poetry mypy --install-types --non-interactive --namespace-packages -p test
poetry mypy --install-types --non-interactive --namespace-packages -p apps

0 comments on commit 3bdac71

Please sign in to comment.