name: Tests on: push: pull_request: jobs: tests: name: PHP ${{ matrix.php }}; Symfony ${{ matrix.symfony }} runs-on: ubuntu-20.04 strategy: matrix: php: ['7.3', '7.4', '8.0'] symfony: ['4', '5', '6'] exclude: - php: '7.3' symfony: '6' - php: '7.4' symfony: '6' steps: - name: Checkout Code uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} tools: composer:v2 coverage: none - name: Setup Problem Matchers run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Select Symfony 4 uses: nick-invision/retry@v1 with: timeout_minutes: 5 max_attempts: 5 command: composer require "symfony/filesystem:^4.0" "symfony/process:^4.0" "symfony/var-dumper:^4.0" --dev --no-update --no-interaction if: "matrix.symfony == '4'" - name: Select Symfony 5 uses: nick-invision/retry@v1 with: timeout_minutes: 5 max_attempts: 5 command: composer require "symfony/filesystem:^5.0" "symfony/process:^5.0" "symfony/var-dumper:^5.0" --dev --no-update --no-interaction if: "matrix.symfony == '5'" - name: Select Symfony 6 uses: nick-invision/retry@v1 with: timeout_minutes: 5 max_attempts: 5 command: composer require "symfony/filesystem:^6.0@dev" "symfony/process:^6.0@dev" "symfony/var-dumper:^6.0@dev" --dev --no-update --no-interaction if: "matrix.symfony == '6'" - name: Install Dependencies uses: nick-invision/retry@v1 with: timeout_minutes: 5 max_attempts: 5 command: composer update --no-interaction --no-progress - name: Execute PHPUnit run: vendor/bin/phpunit env: CHROME_PATH: google-chrome-stable