Skip to content

Commit 13f63d7

Browse files
committed
add -p pyversion
1 parent 6729438 commit 13f63d7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Install dependencies
4444
run: |
45-
just ci-install
45+
just ci-install ${{ matrix.python-version }}
4646
4747
- name: e2e without subprocess
4848
run: |

.github/workflows/lint-and-fmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Install dependencies
3737
run: |
38-
just ci-install
38+
just ci-install ${{ matrix.python-version }}
3939
4040
- name: lint
4141
run: |

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Install dependencies
4141
run: |
42-
just ci-install
42+
just ci-install ${{ matrix.python-version }}
4343
4444
- name: Run unit tests
4545
run: |

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ generate-schema:
7171
uv run scripts/generate-schema.py
7272

7373
# CI specific
74-
ci-install:
75-
uv sync --all-extras --dev
74+
ci-install pyversion:
75+
uv sync --all-extras --dev -p {{pyversion}}
7676

7777
ci-fmt-check:
7878
uv run ruff format --check --diff .

0 commit comments

Comments
 (0)