Skip to content

Commit 9edabca

Browse files
Fixing ifs
1 parent f694102 commit 9edabca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,19 @@ jobs:
8888
run: cmake --build build --config Debug --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_cpp
8989

9090
- name: Run Test C++ (Debug)
91-
if: ! (matrix.name == 'Windows-ARM64' || matrix.name == 'Windows-ARM64EC')
91+
if: matrix.name != 'Windows-ARM64' && matrix.name != 'Windows-ARM64EC'
9292
run: ./build/test/Debug/test_chowdsp_fft_cpp
9393

9494
- name: Build Test C (Debug)
9595
run: cmake --build build --config Debug --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_c
9696

9797
- name: Run Test C (Debug)
98-
if: ! (matrix.name == 'Windows-ARM64' || matrix.name == 'Windows-ARM64EC')
98+
if: matrix.name != 'Windows-ARM64' && matrix.name != 'Windows-ARM64EC'
9999
run: ./build/test/Debug/test_chowdsp_fft_c
100100

101101
- name: Build Test C++ (Release)
102102
run: cmake --build build --config Release --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_cpp
103103

104104
- name: Run Test C++ (Release)
105-
if: ! (matrix.name == 'Windows-ARM64' || matrix.name == 'Windows-ARM64EC')
105+
if: matrix.name != 'Windows-ARM64' && matrix.name != 'Windows-ARM64EC'
106106
run: ./build/test/Release/test_chowdsp_fft_cpp

0 commit comments

Comments
 (0)