Skip to content

Lock file maintenance #1323

Lock file maintenance

Lock file maintenance #1323

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "Unit tests"
on:
pull_request:
push:
branches:
- "[0-9]+.[0-9]+.x"
- "renovate/*"
jobs:
phpunit:
name: "Unit tests"
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
dependencies:
- "lowest"
- "highest"
php-version:
- "8.2"
- "8.3"
- "8.4"
- "8.5"
operating-system:
- "ubuntu-latest"
include:
- dependencies: "locked"
php-version: "8.5"
operating-system: "ubuntu-latest"
- dependencies: "locked"
php-version: "8.5"
operating-system: "windows-latest"
steps:
- name: "Checkout"
uses: actions/checkout@v6
- name: "Install PHP"
uses: "shivammathur/setup-php@2.36.0"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
- uses: ramsey/composer-install@3.1.1
with:
dependency-versions: ${{ matrix.dependencies }}
- name: "Tests"
run: "vendor/bin/phpunit --testsuite=unit"