We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bde1fe4 commit 581102bCopy full SHA for 581102b
.github/workflows/ci.yaml
@@ -18,10 +18,13 @@ jobs:
18
with:
19
python-version: ${{ matrix.python-version }}
20
21
- - uses: astral-sh/ruff-action@v3
+ - name: Build the project
22
+ run: uv build
23
- - name: Install the project
24
- run: uv pip install -r pyproject.toml --all-extras
+ - name: Install the project and dependencies
25
+ run: uv sync --all-extras
26
+
27
+ # - uses: astral-sh/ruff-action@v3
28
29
- name: Run tests with coverage
30
run: uv run pytest tests
0 commit comments