Skip to content

Commit fe20b8f

Browse files
committed
Simplify CI
1 parent 42cbe6e commit fe20b8f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/pull_request.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
outputs:
1717
docker-tag: ${{ steps.docker-tag.outputs.docker-tag }}
1818
env:
19+
UV_FROZEN: true
1920
PYTHON_APP_ENVIRONMENT: development
2021
CI: true # Enable pytest CI mode
2122
steps:
@@ -34,10 +35,19 @@ jobs:
3435
python-version-file: .python-version
3536

3637
- name: Install Python packages
37-
run: uv sync --locked
38+
run: |
39+
unset UV_FROZEN
40+
uv sync --locked
41+
shell: bash
42+
43+
- name: Install Python packages2
44+
run: |
45+
uv sync --locked
3846
shell: bash
3947

4048
- name: Check code
49+
env:
50+
UV_FROZEN: true
4151
run: make check-code
4252
shell: bash
4353

0 commit comments

Comments
 (0)