-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(gha): poe runs ruff and mypy with command lint now
- Loading branch information
Showing
2 changed files
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,10 +22,6 @@ jobs: | |
python-version: "3.12" | ||
- name: Install development dependencies with extras | ||
run: uv sync | ||
- name: Run ruff linting via pre-commit on all files and verbose | ||
uses: pre-commit/[email protected] | ||
with: | ||
extra_args: ruff --all-files -v | ||
- name: Run linting | ||
run: uv run poe lint | ||
testing: | ||
|
@@ -53,4 +49,4 @@ jobs: | |
- name: Run Tests | ||
run: uv run poe cov | ||
- name: Report Coverage | ||
run: uv run coverage report --skip-covered --omit="tests/*" --format=markdown >> $GITHUB_STEP_SUMMARY | ||
run: uv run coverage report --skip-covered --omit="tests/*" --format=markdown >> $GITHUB_STEP_SUMMARY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters