Skip to content

Commit

Permalink
Try every poetry step by invoking python first.
Browse files Browse the repository at this point in the history
  • Loading branch information
tanaya-mankad committed Dec 18, 2023
1 parent 6bc77d2 commit 3b04a8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Lint with Pylint
run: |
poetry run pylint ${{env.REPOSITORY_NAME}}
poetry run pylint test/*.py
poetry run python -m pylint ${{env.REPOSITORY_NAME}}
poetry run python -m pylint test/*.py
continue-on-error: true
- name: Static type checking
run: |
poetry run mypy ${{env.REPOSITORY_NAME}}
poetry run python -m mypy ${{env.REPOSITORY_NAME}}
continue-on-error: true
- name: Test
run: |
Expand Down

0 comments on commit 3b04a8e

Please sign in to comment.