File tree Expand file tree Collapse file tree 1 file changed +16
-10
lines changed
Expand file tree Collapse file tree 1 file changed +16
-10
lines changed Original file line number Diff line number Diff line change 99jobs :
1010 build :
1111
12- runs-on : ubuntu-latest
12+ runs-on : ubuntu-24.04
1313
1414 steps :
15- - uses : actions/checkout@v2
15+ - name : Setup PHP
16+ uses : shivammathur/setup-php@v2
17+ with :
18+ php-version : ' 8.3'
19+ extensions : mbstring, dom, curl
1620
17- - name : Validate composer.json and composer.lock
18- run : composer validate
21+ - uses : actions/checkout@v3
1922
20- - name : Install dependencies
21- run : composer install --prefer-dist --no-progress
23+ - name : Validate composer.json and composer.lock
24+ run : composer validate
2225
23- - name : Run test suite
24- run : composer test
26+ - name : Install dependencies
27+ run : composer install --prefer-dist --no-progress
2528
26- - name : Run php-cs-fixer
27- run : composer csfix .
29+ - name : Check code style
30+ run : composer test:lint
31+
32+ - name : Run test suite
33+ run : composer test:unit
You can’t perform that action at this time.
0 commit comments