Skip to content

Apply fixes from StyleCI #422

Apply fixes from StyleCI

Apply fixes from StyleCI #422

Workflow file for this run

name: Run tests
on: ['push', 'workflow_dispatch']
jobs:
php-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- '8.1'
- '8.0'
laravel:
- '8.*'
testbench:
- '6.*'
dependency-version:
- 'prefer-stable'
include:
- laravel: '8.*'
testbench: '6.*'
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/pest tests