Skip to content

tests

tests #101

Workflow file for this run

name: tests
on:
push:
branches:
- master
- dev
pull_request:
schedule:
- cron: '0 0 1 * *'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
php: [ 8.2, 8.3 ]
laravel: [ 10, 11 ]
name: PHP ${{ matrix.php }} - Laravel v${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- 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
ini-values: error_reporting=E_ALL
coverage: pcov
- name: Install dependencies
run: |
composer require "illuminate/contracts=^${{ matrix.laravel }}" --dev --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: composer test -- --coverage-clover=coverage.xml