FRW-10922 Replaced security checker #332
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - feature/[a-z]+-[0-9]+/dev-* | |
| workflow_dispatch: | |
| env: | |
| APP_ENV: test # Symfony application environment | |
| jobs: | |
| validation: | |
| name: "CS, PHPStan, Security" | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-version: [ | |
| '8.2', | |
| '8.3' | |
| ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| extensions: mbstring, ctype, iconv, xdebug | |
| tools: composer:v2 | |
| - name: Composer get cache directory | |
| id: composer-cache | |
| run: | | |
| echo "::set-output name=dir::$(composer config cache-files-dir)" | |
| - name: Composer cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-composer- | |
| - name: Composer validate | |
| run: composer validate | |
| - name: Composer version | |
| run: composer --version | |
| - name: Composer install | |
| run: composer install --prefer-dist --no-interaction --optimize-autoloader | |
| - name: Container lint | |
| run: bin/console lint:container | |
| - name: Run PHPStan | |
| run: composer stan | |
| - name: Run CodeStyle checks | |
| run: composer cs-check | |
| - name: Run tests | |
| run: XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --only-summary-for-coverage-text tests | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v3 | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |