8
8
strategy :
9
9
fail-fast : false
10
10
matrix :
11
- php : ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
11
+ php : ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
12
12
name : Run tests against php ${{matrix.php}}
13
13
steps :
14
14
- name : Checkout
15
15
uses : actions/checkout@v4
16
16
17
17
- name : Build Docker Container
18
- run : docker- compose -f docker-compose.yml build >/dev/null
18
+ run : docker compose -f docker-compose.yml build >/dev/null
19
19
env :
20
20
PHP_VERSION : ${{matrix.php}}
21
21
22
22
- name : Composer Install
23
- run : docker- compose -f docker-compose.yml run -e PHP_VERSION=${{matrix.php}} test_runner composer install --no-progress
23
+ run : docker compose -f docker-compose.yml run -e PHP_VERSION=${{matrix.php}} test_runner composer install --no-progress
24
24
env :
25
25
PHP_VERSION : ${{matrix.php}}
26
26
27
27
- name : Dump Reflection To File
28
- run : docker- compose -f docker-compose.yml run -e PHP_VERSION=${{matrix.php}} php_under_test /usr/local/bin/php tests/Tools/dump-reflection-to-file.php ReflectionData.json
28
+ run : docker compose -f docker-compose.yml run -e PHP_VERSION=${{matrix.php}} php_under_test /usr/local/bin/php tests/Tools/dump-reflection-to-file.php ReflectionData.json
29
29
env :
30
30
PHP_VERSION : ${{matrix.php}}
31
31
32
32
- name : Run Tests
33
- run : docker- compose -f docker-compose.yml run -e PHP_VERSION=${{matrix.php}} test_runner vendor/bin/phpunit --no-progress --testsuite PHP_${{matrix.php}}
33
+ run : docker compose -f docker-compose.yml run -e PHP_VERSION=${{matrix.php}} test_runner vendor/bin/phpunit --no-progress --testsuite PHP_${{matrix.php}}
34
34
env :
35
35
PHP_VERSION : ${{matrix.php}}
36
36
additional :
@@ -41,13 +41,13 @@ jobs:
41
41
uses : actions/checkout@v4
42
42
43
43
- name : Composer Install
44
- run : docker- compose -f docker-compose.yml run test_runner composer install --no-progress
44
+ run : docker compose -f docker-compose.yml run test_runner composer install --no-progress
45
45
46
46
- name : Test PhpDoc
47
- run : docker- compose -f docker-compose.yml run test_runner vendor/bin/phpunit --no-progress --testsuite PhpDoc
47
+ run : docker compose -f docker-compose.yml run test_runner vendor/bin/phpunit --no-progress --testsuite PhpDoc
48
48
49
49
- name : Test Stubs Map, Structure and Reflection
50
- run : docker- compose -f docker-compose.yml run test_runner vendor/bin/phpunit --no-progress --testsuite Structure
50
+ run : docker compose -f docker-compose.yml run test_runner vendor/bin/phpunit --no-progress --testsuite Structure
51
51
52
52
- name : run cs fixer
53
- run : docker- compose -f docker-compose.yml run test_runner composer cs -- --show-progress=none
53
+ run : docker compose -f docker-compose.yml run test_runner composer cs -- --show-progress=none
0 commit comments