Skip to content

Commit

Permalink
Use uv pip for installing dependencies in action
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Feb 22, 2024
1 parent 86046fd commit ab55849
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ jobs:
shell: bash -l {0}
run: |
mamba install -y -q pip wheel
pip install uv
- name: Install dependencies
shell: bash -l {0}
run: |
pip install -r requirements.txt
pip install moto
uv pip install -r requirements.txt
uv pip install moto
# We have two cores so we can speed up the testing with xdist
- name: Install pytest packages
Expand All @@ -57,7 +58,7 @@ jobs:
- name: Build and install
shell: bash -l {0}
run: |
pip install -v --no-deps -e .
uv pip install -v --no-deps -e .
- name: Run tests
shell: bash -l {0}
Expand Down

0 comments on commit ab55849

Please sign in to comment.