Skip to content

Add extra assertions to see which json data is invallid and see the f… #21

Add extra assertions to see which json data is invallid and see the f…

Add extra assertions to see which json data is invallid and see the f… #21

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
php-tests:
runs-on: ubuntu-latest
timeout-minutes: 15
env:
COMPOSER_NO_INTERACTION: 1
strategy:
matrix:
php: [5.3, 5.4, 5.5, 5.6, 7.0, 7.1, 7.2, 7.3, 7.4, 8.0, 8.1]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- dependency-version: prefer-lowest
php: 7.2
- dependency-version: prefer-lowest
php: 7.3
- dependency-version: prefer-lowest
php: 7.4
name: P${{ matrix.php }} - ${{ matrix.dependency-version }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php }}-${{ matrix.dependency-version }}-${{ hashFiles('**/composer.json') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}-${{ matrix.dependency-version }}
- name: Upgrade PHPUnit
if: matrix.php >= 7.2
run: composer require phpunit/phpunit:^5.7.27 --no-update --no-interaction --dev
- name: Install dependencies
run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress ${{ matrix.php >= 8 && '--ignore-platform-req=php' || '' }}
- name: Fix PHP compatibility
run: php src/test/php/fix-php-compatibility.php
- name: Execute Unit Tests
run: vendor/bin/phpunit