Symfony 7 support #370
Workflow file for this run
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: "Continuous Integration" | |
on: | |
pull_request: | |
branches: | |
- "*.x" | |
- "master" | |
push: | |
env: | |
fail-fast: true | |
jobs: | |
phpunit: | |
name: "PHPUnit" | |
runs-on: "${{ matrix.os }}" | |
env: | |
SYMFONY_REQUIRE: ${{matrix.symfony-version}} | |
strategy: | |
matrix: | |
os: | |
- "ubuntu-20.04" | |
php-version: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
symfony-version: | |
- "5.4.x" | |
- "6.3.x" | |
- "6.4.x" | |
- "7.0.x" | |
driver-version: | |
- "stable" | |
dependencies: | |
- "highest" | |
include: | |
- dependencies: "lowest" | |
os: "ubuntu-20.04" | |
php-version: "7.4" | |
driver-version: "1.5.0" | |
symfony-version: "5.4.*" | |
exclude: | |
- php-version: "7.4" | |
symfony-version: "6.3.x" | |
- php-version: "7.4" | |
symfony-version: "6.4.x" | |
- php-version: "8.0" | |
symfony-version: "6.3.x" | |
- php-version: "8.0" | |
symfony-version: "6.4.x" | |
- php-version: "7.4" | |
symfony-version: "7.0.x" | |
- php-version: "8.0" | |
symfony-version: "7.0.x" | |
- php-version: "8.1" | |
symfony-version: "7.0.x" | |
services: | |
mongodb: | |
image: "mongo" | |
ports: | |
- "27017:27017" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v3" | |
with: | |
fetch-depth: 2 | |
- name: Setup cache environment | |
id: extcache | |
uses: shivammathur/cache-extensions@v1 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: "mongodb-${{ matrix.driver-version }}" | |
key: "extcache-v1" | |
- name: Cache extensions | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.extcache.outputs.dir }} | |
key: ${{ steps.extcache.outputs.key }} | |
restore-keys: ${{ steps.extcache.outputs.key }} | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
tools: "pecl" | |
extensions: "mongodb-${{ matrix.driver-version }}" | |
coverage: "pcov" | |
ini-values: "zend.assertions=1" | |
- name: "Globally install symfony/flex" | |
run: "composer global require --no-progress --no-scripts --no-plugins symfony/flex && composer global config --no-plugins allow-plugins.symfony/flex true" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
- name: "Run PHPUnit" | |
run: "vendor/bin/phpunit --coverage-clover=coverage.xml" | |
- name: "Upload coverage file" | |
uses: "actions/upload-artifact@v3" | |
with: | |
name: "phpunit-${{ matrix.php-version }}.coverage" | |
path: "coverage.xml" | |
upload_coverage: | |
name: "Upload coverage to Codecov" | |
runs-on: "ubuntu-20.04" | |
needs: | |
- "phpunit" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v3" | |
with: | |
fetch-depth: 2 | |
- name: "Download coverage files" | |
uses: "actions/download-artifact@v3" | |
with: | |
path: "reports" | |
- name: "Upload to Codecov" | |
uses: "codecov/codecov-action@v3" | |
with: | |
directory: reports |