2021-11-28 17:43:02 +01:00
|
|
|
name: Tests
|
2021-11-29 13:24:11 +01:00
|
|
|
on: [push, pull_request]
|
2021-11-28 17:43:02 +01:00
|
|
|
jobs:
|
|
|
|
tests:
|
2022-01-11 16:17:53 +01:00
|
|
|
name: PHP ${{ matrix.php-version }} / ${{ matrix.dependencies }}
|
2021-11-28 17:43:02 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: true
|
|
|
|
matrix:
|
2022-01-11 16:17:53 +01:00
|
|
|
dependencies:
|
|
|
|
- "lowest"
|
|
|
|
- "highest"
|
|
|
|
- "locked"
|
|
|
|
php-version:
|
|
|
|
- "7.4"
|
|
|
|
- "8.0"
|
|
|
|
- "8.1"
|
|
|
|
|
2021-11-28 17:43:02 +01:00
|
|
|
env:
|
|
|
|
php-extensions: xdebug, yaml
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 07:16:46 +01:00
|
|
|
uses: actions/checkout@v3
|
2021-11-28 17:43:02 +01:00
|
|
|
|
|
|
|
- name: Setup cache environment
|
|
|
|
id: extcache
|
|
|
|
uses: shivammathur/cache-extensions@v1
|
|
|
|
with:
|
2022-01-11 16:17:53 +01:00
|
|
|
php-version: ${{ matrix.php-version }}
|
2021-11-28 17:43:02 +01:00
|
|
|
extensions: ${{ env.php-extensions }}
|
2022-01-11 16:17:53 +01:00
|
|
|
key: tests-php-extensions-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.dependencies }}
|
2021-11-28 17:43:02 +01:00
|
|
|
|
|
|
|
- name: Cache PHP extensions
|
2022-05-04 19:46:14 +02:00
|
|
|
uses: actions/cache@v3.0.2
|
2021-11-28 17:43:02 +01:00
|
|
|
with:
|
|
|
|
path: ${{ steps.extcache.outputs.dir }}
|
|
|
|
key: ${{ steps.extcache.outputs.key }}
|
|
|
|
restore-keys: ${{ steps.extcache.outputs.key }}
|
|
|
|
|
|
|
|
- name: Setup PHP
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
2022-01-11 16:17:53 +01:00
|
|
|
php-version: ${{ matrix.php-version }}
|
2021-11-28 17:43:02 +01:00
|
|
|
extensions: ${{ env.php-extensions }}
|
|
|
|
ini-values: zend.assertions=1
|
|
|
|
|
2022-01-11 16:17:53 +01:00
|
|
|
- uses: "ramsey/composer-install@v2"
|
2021-11-28 17:43:02 +01:00
|
|
|
with:
|
2022-01-11 16:17:53 +01:00
|
|
|
dependency-versions: ${{ matrix.dependencies }}
|
2021-11-28 17:43:02 +01:00
|
|
|
|
|
|
|
- name: Running unit tests
|
|
|
|
run: php vendor/bin/phpunit --testsuite=unit
|
|
|
|
|
|
|
|
- name: Running functional tests
|
|
|
|
run: php vendor/bin/phpunit --testsuite=functional
|
|
|
|
|
|
|
|
- name: Running integration tests
|
|
|
|
run: php vendor/bin/phpunit --testsuite=integration
|