Skip to content

Update .github/PULL_REQUEST_TEMPLATE.md #290

Update .github/PULL_REQUEST_TEMPLATE.md

Update .github/PULL_REQUEST_TEMPLATE.md #290

Workflow file for this run

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.1',
'8.2',
'8.3'
]
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, ctype, iconv
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@v2
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: composer test
- name: Run tests
run: XDEBUG_MODE=coverage vendor/bin/phpunit tests/ --coverage-clover coverage.xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}