Skip to content

Commit 7a4129f

Browse files
authored
fix: use locked instead of frozen (#889)
Frozen blindly install lock file without looking at the pyproject.toml This is nice for docker images, but for CI we should use locked. It checked the pyproject.toml and the lock file are in sync before installing the dependencies.
1 parent e4b4c10 commit 7a4129f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Linters
2626
shell: bash
27-
run: uv run --frozen poe linters
27+
run: uv run --locked poe linters
2828

2929
test:
3030
timeout-minutes: 5
@@ -49,7 +49,7 @@ jobs:
4949
env:
5050
_MERGIFY_TEST_NEW_FLAKY_DETECTION: "true"
5151
PYTHONUTF8: "${{ matrix.os == 'windows-2025' && 1 || 0 }}"
52-
run: uv run --frozen poe test
52+
run: uv run --locked poe test
5353

5454
- name: Build
5555
shell: bash

0 commit comments

Comments
 (0)