Skip to content

Commit 1488520

Browse files
committed
Fix installation options variations
1 parent 3d5a58f commit 1488520

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
tests:
14-
name: Run tests (py${{ matrix.python-version || '3.14' }}, ${{ matrix.os || 'ubuntu-latest' }}, ${{ matrix.dtype || 'float32' }}, options=[${{ matrix.options || 'full' }}])
14+
name: Run tests (py${{ matrix.python-version || '3.14' }}, ${{ matrix.os || 'ubuntu-latest' }}, ${{ matrix.dtype || 'float32' }}, options=[${{ matrix.options == 'none' && '' || (matrix.options || 'full') }}])
1515
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
1616
strategy:
1717
fail-fast: false
@@ -26,10 +26,10 @@ jobs:
2626
# OS variations
2727
- os: macOS-latest
2828
- os: windows-latest
29-
# dtype variation
29+
# dtype variations
3030
- dtype: float64
31-
# Options variation
32-
- options: ''
31+
# Installation options variations
32+
- options: none
3333

3434
steps:
3535
- name: Checkout repository
@@ -41,7 +41,7 @@ jobs:
4141

4242
- uses: ./.github/actions/install-deps
4343
with:
44-
options: ${{ matrix.options || 'full' }}
44+
options: ${{ matrix.options == 'none' && '' || (matrix.options || 'full') }}
4545
groups: test
4646

4747
- name: Run tests

0 commit comments

Comments
 (0)