We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6f8a92 commit b8045c6Copy full SHA for b8045c6
.github/workflows/ci.yml
@@ -12,10 +12,10 @@ jobs:
12
strategy:
13
matrix:
14
python-version: ['3.9', '3.13']
15
- packages: ['pyspark>=4.0.0', 'pyspark==3.5.6 numpy<2.0.0']
+ packages: [['pyspark>=4.0.0'], ['pyspark==3.5.6', 'numpy<2.0.0']]
16
exclude:
17
- python-version: '3.13'
18
- packages: 'pyspark==3.5.6'
+ packages: ['pyspark==3.5.6', 'numpy<2.0.0']
19
fail-fast: false
20
21
steps:
@@ -33,7 +33,7 @@ jobs:
33
34
- name: Install dependencies
35
run: |
36
- uv add --no-sync --dev ${{ matrix.packages }}
+ uv add --no-sync --dev "${{ join(matrix.packages, '" "') }}"
37
uv sync --python ${{ matrix.python-version }}
38
39
- name: Run tests
0 commit comments