chore: phpstan level 8, increased php and symfony minimum version #84
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cronBundle | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
pull_request: | |
branches: | |
- develop | |
- main | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shivammathur/setup-php@2cb9b829437ee246e9b3cac53555a39208ca6d28 | |
with: | |
php-version: '8.3' | |
- uses: samin/[email protected] | |
with: | |
mysql root password: root | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Check Code Styles | |
run: vendor/bin/ecs | |
- name: Execute tests (Unit and Feature tests) via PHPUnit | |
run: vendor/bin/simple-phpunit | |
- name: Check with phpstan | |
run: vendor/bin/phpstan analyse |