Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ jobs:
- name: Check ruff linting
run: poetry run ruff check ssh_zone_handler/ tests/

- name: Verify type hints
- name: Use ty to verify type hints
run: poetry run ty check --output-format=github

- name: Use mypy to verify type hints
run: poetry run mypy --strict ssh_zone_handler/

- name: Run Pytest
Expand Down
28 changes: 28 additions & 0 deletions 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 @@ -22,6 +22,7 @@ dev = [
"pytest-mock (>=3.15.1)",
"types-pyyaml (>=6.0.12.20250915,<7)",
"ruff (>=0.14.2)",
"ty (>=0.0.11)",
]

[project.scripts]
Expand Down