refactor(docs): created separate doc file for 3D Secure payment. #64
This file contains hidden or 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: Tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| code-style: | |
| runs-on: ubuntu-latest | |
| name: Code Style (PHP CS Fixer) | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| coverage: none | |
| - name: Configure Composer | |
| run: composer config --global policy.advisories.block false | |
| - name: Install dependencies | |
| run: composer update --no-interaction --prefer-dist | |
| - name: Check code style | |
| run: composer cs-check | |
| phpstan: | |
| runs-on: ubuntu-latest | |
| name: PHPStan (level 8) | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| coverage: none | |
| - name: Configure Composer | |
| run: composer config --global policy.advisories.block false | |
| - name: Install dependencies | |
| run: composer update --no-interaction --prefer-dist | |
| - name: Run PHPStan | |
| run: composer phpstan | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - php: '8.1' | |
| symfony: '^5.4' | |
| - php: '8.1' | |
| symfony: '^6.4' | |
| - php: '8.2' | |
| symfony: '^6.4' | |
| - php: '8.2' | |
| symfony: '^7.4' | |
| - php: '8.3' | |
| symfony: '^7.4' | |
| - php: '8.4' | |
| symfony: '^7.4' | |
| - php: '8.4' | |
| symfony: '^8.0' | |
| name: PHP ${{ matrix.php }} / Symfony ${{ matrix.symfony }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: soap | |
| coverage: none | |
| - name: Configure Composer | |
| run: composer config --global policy.advisories.block false | |
| - name: Install dependencies | |
| run: | | |
| composer require \ | |
| "symfony/framework-bundle:${{ matrix.symfony }}" \ | |
| "symfony/yaml:${{ matrix.symfony }}" \ | |
| "symfony/http-client:${{ matrix.symfony }}" \ | |
| --dev --no-update --no-interaction | |
| composer update --no-interaction --prefer-dist | |
| - name: Run unit tests | |
| run: vendor/bin/phpunit --testsuite=unit | |
| - name: Run integration tests | |
| run: vendor/bin/phpunit --testsuite=integration |