Skip to content

Commit 2ff862a

Browse files
committed
fix or workflows
1 parent 81fc71e commit 2ff862a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.10", "3.11", "3.12"]
14+
python-version: ["3.12"]
1515

1616
steps:
1717
- uses: actions/checkout@v4
@@ -24,13 +24,9 @@ jobs:
2424
- name: Install uv
2525
run: |
2626
curl -LsSf https://astral.sh/uv/install.sh | sh
27-
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
2827
2928
- name: Install dependencies
30-
run: uv sync --system
31-
32-
- name: Install dev dependencies
33-
run: uv sync --system --all-extras # Assuming tests are in dev extras
29+
run: uv sync
3430

3531
- name: Run tests
3632
run: uv run pytest -vvv

0 commit comments

Comments
 (0)