Skip to content

Merge pull request #163 from 5pm-HDH/feat/160/pagination-page-size #80

Merge pull request #163 from 5pm-HDH/feat/160/pagination-page-size

Merge pull request #163 from 5pm-HDH/feat/160/pagination-page-size #80

name: Integration-Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup PHP8.0
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress
- name: Composer dump-autoload to load all files
run: composer dump-autoload
- name: Create integration-config file
run: |
printf "$INTEGRATION_CONFIG" >> tests/integration/integration.ini
printf "$INTEGRATION_CONFIG"
cat tests/integration/integration.ini
shell: bash
env:
INTEGRATION_CONFIG: ${{ secrets.INTEGRATION_CONFIG }}
- name: Run integration test suite
run: composer run-script test-integration