[NEB-4780] Add KYC, geo, and bot-detection structured fields to integration tests #39
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 Composer | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| env: | |
| ACCOUNT_ID: ${{ secrets.ACCOUNT_ID }} | |
| API_KEY: ${{ secrets.API_KEY }} | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.operating-system }} | |
| strategy: | |
| matrix: | |
| operating-system: [ ubuntu-latest ] | |
| php-versions: [ '7.1.27', '7.2.16', '7.3.3', '7.4.25' ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| - name: Validate composer.json and composer.lock | |
| run: | | |
| sudo composer self-update | |
| - run: | | |
| composer install --prefer-dist --no-progress | |
| - name: siftPhpTest | |
| run: | | |
| composer exec phpunit -v | |
| run-integration-tests-php74: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.ref == 'refs/heads/master' }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: setup php74 | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '7.4.25' | |
| - run: | | |
| composer install --prefer-dist --no-progress | |
| - run: | | |
| php test_integration_app/main.php |