PaymentControl uses whole payment element instead of just card element #4
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: PHPStan | |
on: [push, pull_request] | |
jobs: | |
phpstan: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: ['7.4', '8.0', '8.1'] | |
fail-fast: false | |
name: PHP ${{ matrix.php }} PHPStan | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- run: composer install --no-progress --prefer-dist | |
- run: vendor/bin/phpstan | |
phpstan-lowest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: ['7.4'] | |
fail-fast: false | |
name: PHP ${{ matrix.php }} PHPStan - lowest dependencies | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- run: composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable | |
- run: vendor/bin/phpstan |