Skip to content

Commit 8643748

Browse files
committed
add explicit sync
1 parent 951c00b commit 8643748

File tree

6 files changed

+17
-4
lines changed

6 files changed

+17
-4
lines changed

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v3
1414
- name: Codespell
15-
uses: codespell-project/actions-codespell@v2
15+
uses: codespell-project/actions-codespell@v2

.github/workflows/deploy-dev.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
python-version: "3.12"
2929
activate-environment: true
3030

31+
- name: Install the project
32+
run: uv sync --locked --no-dev
33+
3134
- name: Update Reflex CLI
3235
run: uv pip install reflex-hosting-cli -U
3336

.github/workflows/deploy-prd.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
python-version: "3.12"
2727
activate-environment: true
2828

29+
- name: Install the project
30+
run: uv sync --locked --no-dev
31+
2932
- name: Update Reflex CLI
3033
run: uv pip install reflex-hosting-cli -U
3134

.github/workflows/deploy-stg.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
python-version: "3.12"
2929
activate-environment: true
3030

31+
- name: Install the project
32+
run: uv sync --locked --no-dev
33+
3134
- name: Update Reflex CLI
3235
run: uv pip install reflex-hosting-cli -U
3336

.github/workflows/integration_tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,11 @@ jobs:
3333
python-version: "3.11"
3434
activate-environment: true
3535

36+
- name: Install the project
37+
run: uv sync --locked --all-extras --dev
38+
3639
- name: Install Requirements for reflex-web and reflex
37-
run: |
38-
uv sync
39-
uv pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}'
40+
run: uv pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}'
4041

4142
- name: Init Website for reflex-web
4243
run: reflex init

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ jobs:
4545
python-version: ${{ matrix.python-version }}
4646
activate-environment: true
4747

48+
- name: Install the project
49+
run: uv sync --locked --all-extras --dev
50+
4851
- name: Install Requirements for reflex-web and reflex
4952
run: uv pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}'
5053

0 commit comments

Comments
 (0)