Skip to content

Fix PHP version tests #5

Fix PHP version tests

Fix PHP version tests #5

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0, 8.1, 8.2]
stability: [prefer-stable]
laravel: ['^6.0', '^9.0', '^10.0']
exclude:
- php: 7.4
laravel: '^9.0'
- php: 7.4
laravel: '^10.0'
- php: 8.0
laravel: '^6.0'
- php: 8.0
laravel: '^10.0'
- php: 8.2
laravel: '^6.0'
- php: 8.2
laravel: '^9.0'
name: PHP ${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd
coverage: none
- name: Install dependencies
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress --with laravel/framework:${{ matrix.laravel }}
- name: Execute code sniffing
run: vendor/bin/phpcs
- name: Execute tests
run: vendor/bin/phpunit --verbose