Skip to content

[New Future] Remember Last Path #97

[New Future] Remember Last Path

[New Future] Remember Last Path #97

Workflow file for this run

# OS: Linux; Symfony: latest stable; PHP: all the commonly used versions supported by this bundle
name: "Tests - Linux"
on:
pull_request:
push:
branches:
- 'master'
env:
fail-fast: true
jobs:
tests:
name: "PHP ${{ matrix.php-version }}"
runs-on: 'ubuntu-latest'
continue-on-error: false
strategy:
matrix:
php-version: ['8.1', '8.2']
steps:
- name: 'Checkout code'
uses: actions/[email protected]
- name: 'Install PHP with extensions'
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: ${{ matrix.php-version }}
tools: composer:v2
extensions: mbstring, intl
ini-values: date.timezone=UTC
- name: 'Install project dependencies'
run: |
composer update --no-interaction --prefer-dist --optimize-autoloader --prefer-stable
vendor/bin/simple-phpunit install
- name: 'Run tests'
env:
SYMFONY_DEPRECATIONS_HELPER: 'max[indirect]=10&max[total]=27'
run: vendor/bin/simple-phpunit -v