45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
|
name: Test
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
run:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
|
||
|
name: PHP ${{ matrix.php-versions }}
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Setup PHP
|
||
|
uses: shivammathur/setup-php@v2
|
||
|
with:
|
||
|
php-version: ${{ matrix.php-versions }}
|
||
|
coverage: xdebug
|
||
|
|
||
|
- name: Get composer cache directory
|
||
|
id: composercache
|
||
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
||
|
|
||
|
- name: Cache dependencies
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: ${{ steps.composercache.outputs.dir }}
|
||
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
||
|
restore-keys: ${{ runner.os }}-composer-
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: |
|
||
|
composer install \
|
||
|
--no-interaction \
|
||
|
--no-ansi \
|
||
|
--no-progress
|
||
|
|
||
|
- name: Run lint
|
||
|
run: composer lint
|
||
|
|
||
|
- name: Run test
|
||
|
run: composer test
|