Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mde-pach committed Mar 3, 2024
1 parent a0e9c93 commit 93328cd
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 6 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,9 @@ jobs:
- name: Install dev dependencies
run: poetry install --with=dev --no-root
- name: Ruff
run: poetry run ruff check blitz/
run: poetry run ruff check tests/
run: poetry run ruff check blitz/ tests/
- name: Mypy
run: poetry run mypy blitz/
run: poetry run mypy tests/
run: poetry run mypy blitz/ tests/
test:
needs: lint
strategy:
Expand Down Expand Up @@ -88,7 +86,6 @@ jobs:
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
- name: Install dev dependencies
run: poetry install --with=dev --no-root --no-interaction
#----------------------------------------------
# add matrix specifics and run test suite
Expand Down
28 changes: 27 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ pytest = "^8.0.0"
mypy = "^1.8.0"
typeguard = "^4.1.5"
pytest-asyncio = "^0.23.5"
ruff = "^0.3.0"

[tool.ruff]
line-length = 120
Expand Down

0 comments on commit 93328cd

Please sign in to comment.