Skip to content

Commit a9551b8

Browse files
committed
.
1 parent d938ff8 commit a9551b8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/pysplashsurf_CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ jobs:
4747
include:
4848
- python-version: "manylinux_x86_64"
4949
archs: "x86_64"
50-
enable_test: true,
50+
enable_test: true
5151
- python-version: "manylinux_i686"
5252
archs: "i686"
53-
enable_test: false,
53+
enable_test: false
5454
- python-version: "manylinux_aarch64"
5555
archs: "aarch64"
56-
enable_test: false,
56+
enable_test: false
5757
- python-version: "manylinux_armv7l"
5858
archs: "armv7l"
59-
enable_test: false,
59+
enable_test: false
6060
steps:
6161
- uses: actions/checkout@v4
6262
- name: Download stub artifact
@@ -78,7 +78,7 @@ jobs:
7878
run: python -m pip install cibuildwheel==3.1.3
7979
- name: Build wheels with tests
8080
run: python -m cibuildwheel --output-dir wheelhouse pysplashsurf
81-
if: ${{ matrix.enable_test }}
81+
if: matrix.enable_test == true
8282
env:
8383
CIBW_BUILD: ${{ format('cp312-{0}', matrix.python-version) }}
8484
CIBW_ARCHS: ${{ matrix.archs }}
@@ -89,7 +89,7 @@ jobs:
8989
CIBW_TEST_REQUIRES: pytest meshio trimesh rtree scipy
9090
- name: Build wheels without tests
9191
run: python -m cibuildwheel --output-dir wheelhouse pysplashsurf
92-
if: ${{ !matrix.enable_test }}
92+
if: matrix.enable_test == false
9393
env:
9494
CIBW_BUILD: ${{ format('cp312-{0}', matrix.python-version) }}
9595
CIBW_ARCHS: ${{ matrix.archs }}

0 commit comments

Comments
 (0)