Skip to content

Commit 824204d

Browse files
authored
CI: Run tests on PHP 5.6
Version condition was incorrent
1 parent 3816415 commit 824204d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
5757

5858
- name: Run tests PHP 5.6, 7.0, 7.1, 7.3
59-
if: matrix.php == '56' || matrix.php == '7.0' || matrix.php == '7.1' || matrix.php == '7.3'
59+
if: matrix.php == '5.6' || matrix.php == '7.0' || matrix.php == '7.1' || matrix.php == '7.3'
6060
run: |
6161
php -S 127.0.0.1:8000 -t tests/data/app >/dev/null 2>&1 &
6262
php codecept build
@@ -128,4 +128,4 @@ jobs:
128128
run: php codecept run cli --skip-group coverage
129129

130130
- name: Run tests unit
131-
run: php codecept run unit -g core -g appveyor
131+
run: php codecept run unit -g core -g appveyor

0 commit comments

Comments
 (0)