Skip to content

Commit

Permalink
Switch from rye to uv
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Aug 27, 2024
1 parent 3fe3217 commit fbd4815
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,18 @@ jobs:
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Rye Python Setup
uses: eifinger/setup-rye@v4
- name: Set up uv
# Install a specific uv version using the installer
run: curl -LsSf https://astral.sh/uv/0.3.3/install.sh | sh

This comment has been minimized.

Copy link
@mgaitan
- name: "Set up Python"
uses: actions/setup-python@v5
with:
version: '0.35.0'
python-version-file: ".python-version"
- name: Install Dependencies
run: rye sync
run: uv sync --all-extras --dev
- name: Run Tests
run: |
source .venv/bin/activate
make test
uv run make test
- name: Attach Code Coverage
uses: py-cov-action/[email protected]
with:
Expand Down

0 comments on commit fbd4815

Please sign in to comment.