2021-01-11 22:39:15 +05:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
2022-03-25 16:09:05 +05:00
|
|
|
phpunit7:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
php-versions: ['7.1', '7.2', '7.3']
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
|
|
|
- run: composer global require phpunit/phpunit ^7
|
|
|
|
- run: phpunit --configuration=phpunit.xml --include-path=lib/
|
2021-01-11 22:39:15 +05:00
|
|
|
|
|
|
|
phpunit8:
|
2021-05-30 18:04:57 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-01-11 22:39:15 +05:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-01-05 04:40:30 +05:00
|
|
|
php-versions: ['7.3', '7.4', '8.0', '8.1']
|
2021-01-11 22:39:15 +05:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
|
|
|
- run: composer global require phpunit/phpunit ^8
|
|
|
|
- run: phpunit --configuration=phpunit.xml --include-path=lib/
|