Test #101
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
name: Test | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, edited, reopened] | |
release: | |
types: [created] | |
schedule: | |
- | |
cron: "0 1 * * 6" # Run at 1am every Saturday | |
jobs: | |
test: | |
name: PHP ${{ matrix.php-version }} + Symfony ${{ matrix.symfony-version }} | |
runs-on: ubuntu-20.04 | |
continue-on-error: false | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
symfony-version: | |
- '4.4.*' | |
- '5.4.*' | |
- '6.0.*' | |
- '7.0.*' | |
exclude: | |
- php-version: '7.4' | |
symfony-version: '6.0.*' | |
- php-version: '7.4' | |
symfony-version: '7.0.*' | |
- php-version: '8.0' | |
symfony-version: '7.0.*' | |
- php-version: '8.1' | |
symfony-version: '7.0.*' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
ini-values: "memory_limit=-1" | |
php-version: ${{ matrix.php-version }} | |
tools: composer:v2 | |
- name: Validate composer.json | |
run: composer validate --no-check-lock | |
- name: Configure Symfony BrowserKit | |
run: composer require --no-update "symfony/browser-kit:${{ matrix.symfony-version }}" | |
- name: Configure Symfony DomCrawler | |
run: composer require --no-update "symfony/dom-crawler:${{ matrix.symfony-version }}" | |
- name: Configure Symfony HttpKernel | |
run: composer require --dev --no-update "symfony/http-kernel:${{ matrix.symfony-version }}" | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress | |
- name: Install Simple PHPUnit | |
run: vendor/bin/simple-phpunit install | |
- name: Run PHPUnit | |
run: vendor/bin/simple-phpunit -v |