2019-11-14 08:17:17 +01:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2019-11-14 08:26:13 +01:00
|
|
|
strategy:
|
|
|
|
max-parallel: 15
|
|
|
|
matrix:
|
2019-11-14 08:30:21 +01:00
|
|
|
# TODO : enable tests on windows
|
|
|
|
operating-system: [ubuntu-latest, macOS-latest]
|
2019-11-14 08:26:13 +01:00
|
|
|
php-versions: ['7.1', '7.2', '7.3']
|
2019-11-14 08:17:17 +01:00
|
|
|
|
2019-11-14 08:26:13 +01:00
|
|
|
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
2019-11-14 08:17:17 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
2019-11-14 08:26:13 +01:00
|
|
|
- name: Setup PHP
|
|
|
|
uses: shivammathur/setup-php@master
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
|
|
|
extension-csv: mbstring, xdebug
|
|
|
|
coverage: xdebug
|
|
|
|
|
2019-11-14 08:30:21 +01:00
|
|
|
- name: Get Composer Cache Directory
|
|
|
|
id: composer-cache
|
|
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
|
2019-11-14 08:17:17 +01:00
|
|
|
- name: Validate composer.json and composer.lock
|
|
|
|
run: composer validate
|
|
|
|
|
2019-11-14 08:19:32 +01:00
|
|
|
- name: Cache vendor
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
2019-11-14 08:30:21 +01:00
|
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-composer-
|
2019-11-14 08:19:32 +01:00
|
|
|
|
2019-11-14 08:17:17 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
run: composer install --prefer-dist --no-progress --no-suggest
|
|
|
|
|
|
|
|
- name: Run test suite
|
|
|
|
run: composer run-script test
|