-
-
Notifications
You must be signed in to change notification settings - Fork 107
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
6655331
commit 0d4ab8e
Showing
1 changed file
with
10 additions
and
9 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 |
---|---|---|
|
@@ -9,17 +9,18 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
architecture: 'x64' | ||
- name: Install a specific version | ||
- name: Rye Python Setup | ||
uses: eifinger/setup-rye@v4 | ||
with: | ||
version: '0.35.0' | ||
- name: Run tests | ||
run: rye run make test | ||
- name: Code coverage comment | ||
python-version: '3.11' | ||
architecture: 'x64' | ||
- name: Configure Virtual Environment | ||
run: | | ||
source .venv/bin/activate | ||
rye sync | ||
- name: Run Tests | ||
run: make test | ||
- name: Attach Code Coverage | ||
uses: py-cov-action/[email protected] | ||
|