Skip to content

Commit 4fa65ed

Browse files
committed
Fix build
1 parent 753379c commit 4fa65ed

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
- name: Install the project
2727
run: uv sync --dev
2828

29-
- name: Install the project
30-
run: make install
31-
3229
- name: Run tests
33-
run: make test
30+
run: uv run inv pytest --junit --no-pty --base
31+
32+
- name: Run isolated tests
33+
run: uv run inv pytest --junit --no-pty --isolated

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
- name: Install the project
29-
run: uv sync --docs
29+
run: uv sync --group docs
3030
- name: MkDocs documentation build
3131
run: uv run mkdocs build -s

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
with:
2222
python-version: 3.13
2323
- name: Install the project
24-
run: uv sync --validate
24+
run: uv sync --group validate
2525
- name: Run mypy static type checker
2626
run: uv run mypy .

0 commit comments

Comments
 (0)