Skip to content

test

test #74

Workflow file for this run

name: Tests
on:
- "push"
- "pull_request"
jobs:
tests:
runs-on: "ubuntu-latest"
continue-on-error: "${{ matrix.php-versions == '8.3' || matrix.symfony == '^6.4' || matrix.symfony == '^7.0' }}"
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3']
symfony:
- '^5.4'
- '^6.0'
- '^6.1'
- '^6.2'
- '^6.3'
- '^6.4'
- '^7.0'
exclude:
- symfony: '^7.0'
php-versions: '8.1'
steps:
- uses: "actions/checkout@v4"
- name: "Cache Composer packages"
id: "composer-cache"
uses: "actions/cache@v3"
with:
path: "vendor"
key: ${{ runner.os }}-php-${{ matrix.php-versions }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
"${{ runner.os }}-php-"
- name: "Setup PHP Action"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-versions }}"
extensions: "intl, xdebug"
- name: "Adapt dependencies"
if: ${{ matrix.symfony == '^6.4' || matrix.symfony == '^7.0' }}
run: "composer config minimum-stability dev"
- name: "Install dependencies"
run: |
composer require --update-with-all-dependencies \
symfony/http-kernel:${{ matrix.symfony }}
- name: "Update to latest dependencies"
run: "composer update"
- name: "Unit + Integration"
run: "vendor/bin/phpunit"
- name: "Mutation tests"
run: "vendor/bin/infection --min-msi=95 --no-progress --threads=5"