Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ runs:
with:
python-version: "3.12"

- name: Resolve lock file
shell: bash
run: uv lock

- name: Install dependencies
shell: bash
run: uv sync --all-packages
Expand Down
4 changes: 4 additions & 0 deletions .github/actions/ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ runs:
with:
python-version: "3.12"

- name: Resolve lock file
shell: bash
run: uv lock

- name: Install dependencies
shell: bash
run: uv sync --all-packages
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
- run: uv lock
- run: uv sync --all-packages
- run: uv run ruff check .
- run: uv run ruff format --check .
Expand All @@ -31,6 +32,7 @@ jobs:
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
- run: uv lock
- run: uv sync --all-packages

# ─── Type check ─────────────────────────────────────────────────────────────
Expand All @@ -43,6 +45,7 @@ jobs:
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
- run: uv lock
- run: uv sync --all-packages
- run: uv run mypy packages/*/src

Expand All @@ -56,6 +59,7 @@ jobs:
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
- run: uv lock
- run: uv sync --all-packages
- run: uv run pytest packages/*/tests

Expand All @@ -69,6 +73,7 @@ jobs:
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
- run: uv lock
- run: uv sync --all-packages
- name: Build all packages
run: |
Expand Down
Loading