Skip to content

release: 0.8.3

release: 0.8.3 #68

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
php: [ '8.2', '8.3' ]
symfony: [ '6.*', '7.*' ]
dep: [highest,lowest]
name: Symfony ${{ matrix.symfony }}, ${{ matrix.dep }} deps, PHP ${{ matrix.php }}, ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: intl
tools: flex
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dep }}
composer-options: --prefer-dist --no-progress --no-scripts
env:
SYMFONY_REQUIRE: ${{ matrix.symfony }}
- name: Run psalm
run: vendor/bin/psalm
if: matrix.dep == 'highest' && matrix.symfony == '7.*'
- name: Run phpstan
run: vendor/bin/phpstan analyse
if: matrix.dep == 'highest' && matrix.symfony == '7.*'
- name: Lint container
run: tests/bin/console lint:container
- name: Validate monorepo
run: vendor/bin/monorepo-builder validate
- name: Load fixtures
run: |
tests/bin/console doctrine:schema:create
tests/bin/console doctrine:fixtures:load --no-interaction
- name: Run phpunit
run: |
export SYMFONY_DEPRECATIONS_HELPER='max[direct]=0'
vendor/bin/phpunit