Skip to content

Commit 581102b

Browse files
committed
fix: match uv steps with locak
1 parent bde1fe4 commit 581102b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,13 @@ jobs:
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020

21-
- uses: astral-sh/ruff-action@v3
21+
- name: Build the project
22+
run: uv build
2223

23-
- name: Install the project
24-
run: uv pip install -r pyproject.toml --all-extras
24+
- name: Install the project and dependencies
25+
run: uv sync --all-extras
26+
27+
# - uses: astral-sh/ruff-action@v3
2528

2629
- name: Run tests with coverage
2730
run: uv run pytest tests

0 commit comments

Comments
 (0)