Skip to content

Bump php from 8.4.14-alpine to 8.5.1-alpine #319

Bump php from 8.4.14-alpine to 8.5.1-alpine

Bump php from 8.4.14-alpine to 8.5.1-alpine #319

Workflow file for this run

name: PHPUnit
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Run tests (PHP ${{ matrix.php }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '8.3', '8.4' ]
steps:
- name: Checkout Code
uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, pdo, sqlite, pdo_sqlite
ini-values: max_execution_time=180
- name: Install Composer Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Run tests via PHPUnit
run: vendor/bin/phpunit