Skip to content

Commit

Permalink
fix: CI commands
Browse files Browse the repository at this point in the history
  • Loading branch information
YounesOMK committed Dec 21, 2023
1 parent f68cba0 commit 1888cea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:
- name: Format with ruff
run: |
ruff format .
poetry run ruff format .
- name: Lint with ruff
run: |
ruff check .
poetry run ruff check .
- name: Type check with mypy
run: poetry mypy .
run: poetry run mypy .

- name: Test with unittest
run: |
python -m unittest -v
poetry run python -m unittest -v

0 comments on commit 1888cea

Please sign in to comment.