build(deps): bump doctrine/orm from 3.0.0 to 3.0.1 #31
Workflow file for this run
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: CI | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP, extensions and composer with shivammathur/setup-php | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
extensions: mbstring, xml, ctype, iconv, intl, pdo, pdo_mysql, dom, filter, gd, iconv, json | |
env: | |
update: true | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- 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 | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist -o | |
- name: Check Symfony requirements | |
run: vendor/bin/requirements-checker | |
- name: Check Style | |
run: vendor/bin/php-cs-fixer check --no-ansi --no-interaction | |
- name: Warm cache | |
run: php bin/console cache:warmup | |
- name: Static analysis | |
run: vendor/bin/phpstan --no-ansi --no-interaction --no-progress | |
- name: Test | |
run: php bin/phpunit --no-interaction |