Skip to content

Commit 89dd6d0

Browse files
committed
Fix shell syntax
1 parent 1875026 commit 89dd6d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525

2626
jobs:
2727
builds:
28-
name: build / PHP-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.name }}-${{ matrix.arch }}
28+
name: PHP-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.name }}-${{ matrix.arch }}
2929

3030
runs-on: ${{ matrix.os }}
3131
strategy:
@@ -92,7 +92,7 @@ jobs:
9292
shell: bash
9393
run: |
9494
php --ri zephir_parser
95-
if [ "${{ runner.os }}" -eq 'Windows' ]; then
95+
if [ "${{ runner.os }}" = "Windows" ]; then
9696
TEST_PHP_EXECUTABLE=C:\tools\php\php.exe php run-tests.php -q
9797
else
9898
TEST_PHP_EXECUTABLE=$(which php) php run-tests.php -q

0 commit comments

Comments
 (0)