Switch to non-deprecated Extension class #170
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: flysystem-bundle | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- 1.x | |
- 2.x | |
- 3.x | |
jobs: | |
coding-style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
coverage: none | |
- name: php-cs-fixer | |
run: | | |
wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.13.2/php-cs-fixer.phar -q | |
php php-cs-fixer.phar fix --dry-run --diff | |
phpunit: | |
name: PHPUnit (PHP ${{ matrix.php-version }} - Symfony ${{ matrix.symfony-version }}) | |
runs-on: ubuntu-latest | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.symfony-version }} | |
strategy: | |
matrix: | |
php-version: | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
symfony-version: | |
- '5.4.*' | |
- '6.0.*' | |
- '6.1.*' | |
- '6.2.*' | |
- '6.3.*' | |
include: | |
- php-version: '8.0' | |
symfony-version: '5.4.*' | |
- php-version: '8.2' | |
symfony-version: '6.4.*' | |
- php-version: '8.2' | |
symfony-version: '7.0.*' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install PHP with pcov | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: ${{ matrix.php-version }} | |
- name: Install Symfony Flex | |
run: | | |
composer config --global --no-plugins allow-plugins.symfony/flex true | |
composer global require --no-progress --no-scripts --no-plugins symfony/flex | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Run PHPUnit | |
run: vendor/bin/simple-phpunit |