Skip to content

Update README.md

Update README.md #89

Workflow file for this run

name: tests
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * 3'
jobs:
tests:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os:
- "ubuntu-latest"
- "windows-latest"
php:
- 8.1
- 8.2
- 8.3
- 8.4
laravel:
- "11.x"
- "10.x"
dependencies:
- "highest"
- "lowest"
experimental:
- false
exclude:
- php: 8.1
laravel: "11.x"
- php: 8.4
laravel: "10.x"
name: Laravel:${{ matrix.laravel }} / PHP:${{ matrix.php }} / OS:${{ matrix.os }} ${{ matrix.dependencies == 'highest' && '⬆️' || '⬇️' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite3, pdo_sqlite, pdo_mysql, bcmath, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Install dependencies
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "--prefer-dist --no-cache --with=laravel/framework:${{ matrix.laravel }}"
- name: Installed dependencies
run: composer show -D
- name: Execute tests
run: vendor/bin/phpunit