feat: bump doctrine/doctrine-fixtures-bundle 3 => 4 (#132) #302
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
# OS: Linux; Symfony: upcoming (still unreleased) version; PHP: latest stable | |
name: "Tests - Upcoming Symfony version" | |
on: [push, pull_request] | |
env: | |
fail-fast: true | |
jobs: | |
tests: | |
runs-on: 'ubuntu-latest' | |
continue-on-error: true | |
strategy: | |
matrix: | |
symfony-version: ['7.3.x@dev'] | |
steps: | |
- name: 'Checkout code' | |
uses: actions/checkout@v4 | |
- name: 'Install PHP with extensions' | |
uses: shivammathur/[email protected] | |
with: | |
coverage: none | |
php-version: '8.4' | |
tools: composer:v2 | |
extensions: pcov, curl, libxml, pcntl, pdo | |
ini-values: date.timezone=UTC | |
- name: 'Install project dependencies' | |
#env: | |
#SYMFONY_REQUIRE: ${{ matrix.symfony-version }} | |
run: | | |
composer global config --no-plugins allow-plugins.symfony/flex true | |
composer global require --no-progress --no-scripts --no-plugins symfony/flex | |
composer config minimum-stability dev | |
composer config prefer-stable false | |
composer update --no-interaction --optimize-autoloader | |
vendor/bin/simple-phpunit install | |
- name: 'Run tests' | |
env: | |
#SYMFONY_DEPRECATIONS_HELPER: 'max[indirect]=9999&max[direct]=0&max[self]=9999' | |
SYMFONY_DEPRECATIONS_HELPER: 'weak' | |
run: vendor/bin/simple-phpunit || exit 0 |