[phpstorm-stubs] fix PHP_VERSION env var

This commit is contained in:
Ivan Fedorov 2022-11-06 13:09:48 +01:00 committed by Ivan Fedorov
parent a17205e61f
commit 13a55a683b
1 changed files with 3 additions and 3 deletions

View File

@ -18,17 +18,17 @@ jobs:
PHP_VERSION: '7.1'
- name: Composer Install
run: docker-compose -f docker-compose.yml run -e PHP_VERSION='7.1' test_runner composer update
run: docker-compose -f docker-compose.yml run -e PHP_VERSION=7.1 test_runner composer update
env:
PHP_VERSION: '7.1'
- name: Dump Reflection To File
run: docker-compose -f docker-compose.yml run -e PHP_VERSION='7.1' php_under_test /usr/local/bin/php tests/Tools/dump-reflection-to-file.php ReflectionData.json
run: docker-compose -f docker-compose.yml run -e PHP_VERSION=7.1 php_under_test /usr/local/bin/php tests/Tools/dump-reflection-to-file.php ReflectionData.json
env:
PHP_VERSION: '7.1'
- name: Run Tests
run: docker-compose -f docker-compose.yml run -e PHP_VERSION='7.1' test_runner vendor/bin/phpunit --testsuite PHP_7.1
run: docker-compose -f docker-compose.yml run -e PHP_VERSION=7.1 test_runner vendor/bin/phpunit --testsuite PHP_7.1
env:
PHP_VERSION: '7.1'
additional: