Code generation: update services and models #3825
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: PHP CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
workflow_dispatch: {} | |
permissions: | |
contents: read | |
jobs: | |
php-test: | |
name: PHP Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: [ '7.3', '8.2', '8.4' ] | |
include: | |
- php-version: '8.2' | |
validate: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
tools: composer:v2 | |
- name: Validate composer.json and composer.lock | |
if: matrix.validate | |
run: composer validate --strict | |
- name: Check PHP syntax | |
if: matrix.validate | |
run: find -L . -path ./vendor -prune -o -path ./tests -prune -o -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress | |
- name: Run unit tests | |
run: vendor/bin/phpunit --testsuite=unit --coverage-clover build/clover.xml --log-junit build/tests-log.xml | |
- name: Clean up reports | |
run: sed -i "s;`pwd`/;;g" build/*.xml | |
php-lint: | |
name: PHP Lint | |
needs: php-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
tools: composer:v2 | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress | |
- name: Run PHP Code Sniffer | |
run: vendor/bin/phpcs --exclude=Generic.Files.LineLength | |
integration-tests: | |
name: Integration Tests | |
needs: [php-test, php-lint] | |
runs-on: ubuntu-latest | |
# Only run integration tests on pull requests with release label and from the main repository | |
if: | | |
github.event_name == 'pull_request' && | |
contains(github.event.pull_request.labels.*.name, 'release') && | |
github.event.pull_request.head.repo.full_name == github.repository | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
tools: composer:v2 | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress | |
- name: Run integration tests | |
run: vendor/bin/phpunit --testsuite=integration --no-coverage | |
env: | |
INTEGRATION_USERNAME: ${{ secrets.INTEGRATION_USERNAME }} | |
INTEGRATION_PASSWORD: ${{ secrets.INTEGRATION_PASSWORD }} | |
INTEGRATION_X_API_KEY: ${{ secrets.INTEGRATION_X_API_KEY }} | |
INTEGRATION_MERCHANT_ACCOUNT: ${{ secrets.INTEGRATION_MERCHANT_ACCOUNT }} | |
INTEGRATION_DONATION_ACCOUNT: ${{ secrets.INTEGRATION_DONATION_ACCOUNT }} | |
INTEGRATION_SKIN_CODE: ${{ secrets.INTEGRATION_SKIN_CODE }} | |
INTEGRATION_HMAC_SIGNATURE: ${{ secrets.INTEGRATION_HMAC_SIGNATURE }} | |
INTEGRATION_STORE_PAYOUT_USERNAME: ${{ secrets.INTEGRATION_STORE_PAYOUT_USERNAME }} | |
INTEGRATION_STORE_PAYOUT_PASSWORD: ${{ secrets.INTEGRATION_STORE_PAYOUT_PASSWORD }} | |
INTEGRATION_REVIEW_PAYOUT_USERNAME: ${{ secrets.INTEGRATION_REVIEW_PAYOUT_USERNAME }} | |
INTEGRATION_REVIEW_PAYOUT_PASSWORD: ${{ secrets.INTEGRATION_REVIEW_PAYOUT_PASSWORD }} |