Skip to content

Commit b8045c6

Browse files
committed
fix
1 parent d6f8a92 commit b8045c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version: ['3.9', '3.13']
15-
packages: ['pyspark>=4.0.0', 'pyspark==3.5.6 numpy<2.0.0']
15+
packages: [['pyspark>=4.0.0'], ['pyspark==3.5.6', 'numpy<2.0.0']]
1616
exclude:
1717
- python-version: '3.13'
18-
packages: 'pyspark==3.5.6'
18+
packages: ['pyspark==3.5.6', 'numpy<2.0.0']
1919
fail-fast: false
2020

2121
steps:
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Install dependencies
3535
run: |
36-
uv add --no-sync --dev ${{ matrix.packages }}
36+
uv add --no-sync --dev "${{ join(matrix.packages, '" "') }}"
3737
uv sync --python ${{ matrix.python-version }}
3838
3939
- name: Run tests

0 commit comments

Comments
 (0)