Skip to content

choreL Update composer scripts #188

choreL Update composer scripts

choreL Update composer scripts #188

Workflow file for this run

name: tests
on:
push:
branches:
- main
- '*.x'
pull_request:
branches:
- main
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-24.04
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Composer dependencies
run: composer install --prefer-dist --no-interaction --no-progress
- name: Run test suite
env:
XDEBUG_MODE: coverage
run: composer test