Skip to content

CI: bump actions/checkout to v5 (Node 24) #6

CI: bump actions/checkout to v5 (Node 24)

CI: bump actions/checkout to v5 (Node 24) #6

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
jobs:
tests:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, xml, dom, tokenizer, xmlwriter, curl, soap, gd, exif, fileinfo, openssl
coverage: none
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress
- name: Run tests
run: vendor/bin/phpunit --exclude-group network