Skip to content

Commit 2661070

Browse files
Make sure all make targets are getting the resolution
1 parent 0ef2c32 commit 2661070

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
matrix:
2020
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2121
resolution: ["highest", "lowest-direct"]
22+
env:
23+
# Shared env variables for all the tests
24+
UV_RESOLUTION: '${{ matrix.resolution }}'
2225
steps:
2326
- name: Checkout code
2427
uses: actions/checkout@v5
@@ -32,8 +35,8 @@ jobs:
3235
- uses: astral-sh/setup-uv@v6
3336
with:
3437
python-version: ${{ matrix.python-version }}
35-
- name: Install dependencies with resolution ${{ matrix.resolution }}
36-
run: UV_RESOLUTION=${{ matrix.resolution }} make install
38+
- name: Install dependencies
39+
run: make install
3740
- name: Execute tests
3841
run: make test
3942
- name: Lint

0 commit comments

Comments
 (0)