-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c57fc6
commit 76e4e69
Showing
9 changed files
with
624 additions
and
813 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
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 |
---|---|---|
|
@@ -17,24 +17,36 @@ jobs: | |
- "3.11" | ||
- "3.12" | ||
- "3.13" | ||
env: | ||
UV_PYTHON: ${{ matrix.python }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
- name: Setup uv | ||
uses: astral-sh/setup-uv@v5 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install coverage poetry | ||
poetry install | ||
run: uv sync --dev | ||
|
||
- name: Run formatter | ||
run: uv run ruff format --check . | ||
|
||
- name: Run linter | ||
run: uv run ruff check . | ||
|
||
- name: Run type checker | ||
run: uv run mypy . | ||
|
||
- name: Run checks | ||
run: poetry run poe check | ||
- name: Run tests | ||
run: uv run pytest | ||
|
||
- name: Create XML coverage report | ||
run: poetry run coverage xml | ||
- name: Create test coverage report | ||
run: uv run coverage xml | ||
|
||
- name: Upload test coverage report | ||
uses: codecov/[email protected] |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
3.9 |
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
Oops, something went wrong.