Skip to content

Update changelog and README for Laravel 12 and PHP 8.4 support; remov… #141

Update changelog and README for Laravel 12 and PHP 8.4 support; remov…

Update changelog and README for Laravel 12 and PHP 8.4 support; remov… #141

Workflow file for this run

name: run-tests
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: laravel_spatial_test
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
fail-fast: true
matrix:
php: [8.2, 8.3, 8.4]
laravel: [11, 12]
stability: [prefer-lowest, prefer-stable]
name: P${{ matrix.php }} - L${{ matrix.laravel }}
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, mysql, mysqli, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress
- name: Start database server
run: sudo /etc/init.d/mysql start
- name: Execute tests
env:
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
run: vendor/bin/phpunit --testdox --colors=always --exclude-group skipped