Skip to content

Commit

Permalink
feat: mypy
Browse files Browse the repository at this point in the history
- add basic gh action to run mypi
  • Loading branch information
ghinks committed Jan 15, 2025
1 parent d169e8b commit 4b18ea4
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- name: ruff
run: |
poetry run ruff check
- name: run mypy
run: |
poetry run mypy --python-version=${{ matrix.python-version }}
- name: run unit tests
run: |
poetry run pytest
Expand Down
82 changes: 81 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 @@ -17,6 +17,7 @@ requests = "^2.32.3"
tabulate = "^0.9.0"
asyncio = "^3.4.3"
aioresponses = "^0.7.7"
mypy = "^1.14.1"


[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit 4b18ea4

Please sign in to comment.