Skip to content

Commit 607823e

Browse files
authored
Fix running examples (#98)
1 parent 3d86c43 commit 607823e

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: astral-sh/setup-uv@v5
2121
with:
2222
cache-dependency-glob: "**/pyproject.toml"
23-
- run: just check-types
23+
- run: just install check-types
2424

2525
lint:
2626
runs-on: ubuntu-latest
@@ -30,7 +30,7 @@ jobs:
3030
- uses: astral-sh/setup-uv@v5
3131
with:
3232
cache-dependency-glob: "**/pyproject.toml"
33-
- run: just lint
33+
- run: just install lint
3434

3535
test:
3636
runs-on: ubuntu-latest
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
cache-dependency-glob: "**/pyproject.toml"
5050
- run: uv python install ${{ matrix.python-version }}
51-
- run: just test -vv
51+
- run: just install test -vv
5252

5353
test-integration:
5454
runs-on: ubuntu-latest

Justfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
default: lint check-types test test-integration
1+
default: install lint check-types test test-integration
2+
3+
install:
4+
uv lock --upgrade
5+
uv sync --all-extras --all-packages --frozen
26

37
lint:
48
uv run ruff check .

0 commit comments

Comments
 (0)