Skip to content

feat: add constructor for preinitializing items #3

feat: add constructor for preinitializing items

feat: add constructor for preinitializing items #3

Workflow file for this run

name: CI
on:
pull_request:
branches:
- orm2
- orm3
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
php: [ '8.2', '8.3', '8.4' ]
orm: ['^2.20']
dep: [highest,lowest]
name: ${{ matrix.dep }} deps, ORM ${{ matrix.orm }}, PHP ${{ matrix.php }}, ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: intl
tools: flex, phive
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: phive
run: phive install --trust-gpg-keys E82B2FB314E9906E
- name: Install dependencies
uses: ramsey/composer-install@v3
with:
dependency-versions: ${{ matrix.dep }}
composer-options: --prefer-dist --no-progress --no-scripts --ignore-platform-reqs --with=doctrine/orm:${{ matrix.orm }}
- name: Run psalm
run: vendor/bin/psalm
- name: Run phpstan
run: vendor/bin/phpstan analyse
- name: Validate php-cs-fixer
run: |
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer check --allow-risky=yes
- name: Run phpunit
run: |
export SYMFONY_DEPRECATIONS_HELPER='max[direct]=0'
vendor/bin/phpunit