File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -55,22 +55,15 @@ jobs:
55
55
- name : Composer install
56
56
run : composer install --no-interaction --no-progress --optimize-autoloader --ansi
57
57
58
- - 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 '
58
+ - name : Run tests without code coverage on PHP 7.3 , 7.4
59
+ if : matrix.php == '7.3 ' || matrix.php == '7.4 '
60
60
run : |
61
61
php -S 127.0.0.1:8000 -t tests/data/app >/dev/null 2>&1 &
62
62
php codecept build
63
63
php codecept run cli,unit
64
64
65
- - name : Run tests PHP 7.2, 7.4
66
- if : matrix.php == '7.2' || matrix.php == '7.4'
67
- run : |
68
- php -S 127.0.0.1:8008 -t tests/data/app -d pcov.directory=$(pwd)/tests/data/app >/dev/null 2>&1 &
69
- php codecept build
70
- php codecept run cli,unit,coverage --env COVERAGE=1
71
-
72
- - name : Run tests PHP 8.0
73
- if : matrix.php == '8.0'
65
+ - name : Run tests with code coverage on PHP 7.2, 8.0
66
+ if : matrix.php == '7.2' || matrix.php == '8.0'
74
67
run : |
75
68
php -S 127.0.0.1:8008 -t tests/data/app -d pcov.directory=$(pwd)/tests/data/app >/dev/null 2>&1 &
76
69
php codecept build
You can’t perform that action at this time.
0 commit comments