File tree Expand file tree Collapse file tree 4 files changed +5860
-0
lines changed
Expand file tree Collapse file tree 4 files changed +5860
-0
lines changed Original file line number Diff line number Diff line change 1111/phpunit.dist.xml export-ignore
1212/.php-cs-fixer.dist.php export-ignore
1313/phpstan.dist.neon export-ignore
14+ /phpstan-baseline.neon export-ignore
1415/README.md export-ignore
Original file line number Diff line number Diff line change 88 types : [ created ]
99
1010jobs :
11+ check_composer :
12+ name : Check composer.json
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v4
16+ - uses : shivammathur/setup-php@v2
17+ with :
18+ coverage : none
19+ php-version : ' 8.3'
20+ - run : composer validate --strict --no-check-lock
21+
1122 check_code_style :
1223 name : Check code style
1324 runs-on : ubuntu-latest
2132 run : composer update
2233 - run : ./vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=dots
2334
35+ static_analysis :
36+ name : Static analysis
37+ runs-on : ubuntu-latest
38+ steps :
39+ - uses : actions/checkout@v4
40+ - uses : shivammathur/setup-php@v2
41+ with :
42+ coverage : none
43+ php-version : ' 8.3'
44+ - name : Install dependencies
45+ run : composer update
46+ - run : ./vendor/bin/phpstan analyze
47+
2448 tests :
2549 runs-on : ubuntu-latest
2650 name : Build and test
You can’t perform that action at this time.
0 commit comments