Skip to content

Commit

Permalink
ci: try uv for environment management
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarrison committed Nov 7, 2024
1 parent 5fb5b62 commit a0884b1
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,22 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
submodules: 'recursive'
version: "0.4.30"

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4

with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies

- name: Install the project
run: |
python -m pip install -U pip
pip install -v .
uv sync --all-extras --dev
- name: Run local-mode (ssh) test
working-directory: tests/test_ssh/
run: |
bash run.sh
uv run run.sh

0 comments on commit a0884b1

Please sign in to comment.