Skip to content

wip

wip #444

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.0', '8.1', '8.2', '8.3', '8.4']
laravel: ['8.*', '11.*', '12.*']
testbench: ['6.*', '9.*', '10.*']
dependency-version: [prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*
exclude:
- laravel: 11.*
php: '8.0'
- laravel: 11.*
php: '8.1'
- laravel: 12.*
php: '8.0'
- laravel: 12.*
php: '8.1'
- laravel: 8.*
testbench: 9.*
- laravel: 8.*
testbench: 10.*
- laravel: 11.*
testbench: 6.*
- laravel: 11.*
testbench: 10.*
- laravel: 12.*
php: '8.0'
- laravel: 12.*
php: '8.1'
- laravel: 12.*
testbench: 9.*
- laravel: 12.*
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