Skip to content

Commit

Permalink
Switch to using uv pip for installations
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerYep committed Sep 29, 2024
1 parent 8bf6257 commit bbfd53a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install mypy pytest pytest-cov
pip install -r requirements.txt
python -m pip install --upgrade uv
uv pip install --system mypy pytest pytest-cov
uv pip install --system -r requirements.txt
- name: mypy
run: |
mypy --install-types --non-interactive .
Expand Down

0 comments on commit bbfd53a

Please sign in to comment.