Skip to content

Merge pull request #9 from andriisobolatpaysera/symfony-5-support #1

Merge pull request #9 from andriisobolatpaysera/symfony-5-support

Merge pull request #9 from andriisobolatpaysera/symfony-5-support #1

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
tests:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system:
- 'ubuntu-latest'
php:
- '7.1'
- '7.2'
- '7.3'
- '7.4'
- '8.0'
- '8.1'
- '8.2'
dependency:
- 'highest'
name: PHP ${{ matrix.php }} with ${{ matrix.dependency }} dependencies tests on ${{ matrix.operating-system }}
steps:
- name: Setup PHP version ${{ matrix.php }} on ${{ matrix.operating-system }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependency }}
- name: Run all tests
run: composer test