Bump friendsofphp/php-cs-fixer from 3.4.0 to 3.25.0 #762
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: | |
push: | |
branches: | |
- "2.x" | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php-version: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v3" | |
- name: "Install PHP with extensions" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: "Determine composer cache directory" | |
id: "determine-composer-cache-directory" | |
run: 'echo "::set-output name=directory::$(composer config cache-dir)"' | |
- name: "Cache dependencies installed with composer" | |
uses: "actions/[email protected]" | |
with: | |
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}" | |
key: "php-${{ matrix.php-version }}-composer-cache" | |
- name: "Update Packages for PHP 8.0" | |
if: ${{ matrix.php-version == '8.0' }} | |
run: "composer up --prefer-lowest ocramius/package-versions symfony/*" | |
- name: "Update Packages for PHP 7.4" | |
if: ${{ matrix.php-version == '7.4' }} | |
run: "composer up --prefer-lowest" | |
- name: "Run tests" | |
run: "make -j -O test" | |
- name: "Send code coverage" | |
uses: codecov/[email protected] |