Skip to content

Test on PHP 8.4 (#82) #190

Test on PHP 8.4 (#82)

Test on PHP 8.4 (#82) #190

Workflow file for this run

name: run-tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: [8.4, 8.3, 8.2]
laravel: ['10.*', '11.*']
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: ^8.13
carbon: ^2.63
- laravel: 11.*
testbench: ^9.0
carbon: ^2.63
services:
mysql:
image: mysql:latest
env:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: laravel_backup_restore
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
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, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
ini-values: pcov.directory=src
coverage: pcov
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: List Installed Dependencies
run: composer show -D
- name: Create sqlite database
run: |
mkdir database
touch database/database.sqlite
- name: Execute tests
run: vendor/bin/pest --exclude-group=pgsql --coverage --min=80
env:
MYSQL_PORT: 3306
MYSQL_USERNAME: root
MYSQL_PASSWORD: 'password'
MYSQL_DATABASE: laravel_backup_restore
PGSQL_HOST: localhost
PGSQL_PORT: 5432
PGSQL_USERNAME: postgres
PGSQL_PASSWORD: postgres
PGSQL_DATABASE: laravel_backup_restore