Skip to content

Commit 1f4db59

Browse files
committed
chore: cleanup syntax
1 parent d963abe commit 1f4db59

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test-build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
path: dist/*.whl
6969

7070
build-wheels-mypyc:
71-
name: Build MyPyC wheels
71+
name: Build MyPyC wheels for all platforms
7272
runs-on: ubuntu-latest
7373
strategy:
7474
matrix:
@@ -99,9 +99,9 @@ jobs:
9999
CIBW_BUILD_VERBOSITY: 1
100100

101101
# Platform configuration - limited for testing
102-
CIBW_ARCHS_LINUX: ${{ github.event.inputs.test_matrix == 'full' && '"x86_64 aarch64"' || '"x86_64"' }}
103-
CIBW_ARCHS_MACOS: ${{ github.event.inputs.test_matrix == 'full' && '"x86_64 arm64"' || '"x86_64"' }}
104-
CIBW_ARCHS_WINDOWS: ${{ github.event.inputs.test_matrix == 'full' && '"AMD64"' || '"AMD64"' }}
102+
CIBW_ARCHS_LINUX: ${{ github.event.inputs.test_matrix == 'full' && 'x86_64 aarch64' || 'x86_64' }}
103+
CIBW_ARCHS_MACOS: ${{ github.event.inputs.test_matrix == 'full' && 'x86_64 arm64' || 'x86_64' }}
104+
CIBW_ARCHS_WINDOWS: ${{ github.event.inputs.test_matrix == 'full' && 'AMD64' || 'AMD64' }}
105105

106106
# Skip problematic combinations
107107
CIBW_SKIP: "cp39-win_arm64 *-musllinux*"
@@ -118,6 +118,7 @@ jobs:
118118
name: wheels-mypyc-py${{ matrix.python-version }}
119119
path: wheelhouse/*.whl
120120

121+
121122
test-wheels:
122123
name: Test ${{ matrix.os }} py${{ matrix.python-version }}
123124
needs: [build-wheels-standard, build-wheels-mypyc]

0 commit comments

Comments
 (0)