Skip to content

Commit a0222d8

Browse files
authored
Merge pull request #19 from olehermanse/test
Fixed error message about pre-existing environment
2 parents d892c14 + 1f97783 commit a0222d8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
python -m pip install uv
2929
- name: Setup
3030
run: |
31-
uv sync --frozen
31+
uv venv
32+
uv sync
3233
- name: Check formatting with black
3334
run: |
3435
uv tool run black --check .

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ jobs:
3737
uv build
3838
- name: Install
3939
run: |
40-
uv venv
41-
uv sync
40+
uv sync --frozen
4241
uv pip install .
4342
- name: Shell tests
4443
run: |

0 commit comments

Comments
 (0)