Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
tleonhardt committed Jan 18, 2025
1 parent 753379c commit 4fa65ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- name: Install the project
run: uv sync --dev

- name: Install the project
run: make install

- name: Run tests
run: make test
run: uv run inv pytest --junit --no-pty --base

- name: Run isolated tests
run: uv run inv pytest --junit --no-pty --isolated
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --docs
run: uv sync --group docs
- name: MkDocs documentation build
run: uv run mkdocs build -s
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
with:
python-version: 3.13
- name: Install the project
run: uv sync --validate
run: uv sync --group validate
- name: Run mypy static type checker
run: uv run mypy .

0 comments on commit 4fa65ed

Please sign in to comment.