57 lines
1.3 KiB
YAML
Executable File
57 lines
1.3 KiB
YAML
Executable File
name: "PHPUnit tests"
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
|
|
jobs:
|
|
phpunit:
|
|
name: "PHPUnit tests"
|
|
|
|
runs-on: "ubuntu-latest"
|
|
|
|
strategy:
|
|
matrix:
|
|
dependencies:
|
|
- "highest"
|
|
php-version:
|
|
- "8.0"
|
|
- "8.1"
|
|
- "8.2"
|
|
- "8.3"
|
|
- "8.4"
|
|
- "8.5"
|
|
|
|
include:
|
|
- php-version: '8.0'
|
|
dependencies: "lowest"
|
|
|
|
steps:
|
|
- name: "Checkout"
|
|
uses: "actions/checkout@v4"
|
|
|
|
- name: "Install PHP"
|
|
uses: "shivammathur/setup-php@v2"
|
|
with:
|
|
coverage: "pcov"
|
|
php-version: "${{ matrix.php-version }}"
|
|
ini-values: memory_limit=-1
|
|
tools: composer:v2
|
|
|
|
- name: "Install lowest dependencies"
|
|
if: ${{ matrix.dependencies == 'lowest' }}
|
|
run: "composer update --prefer-lowest --no-interaction --no-progress"
|
|
|
|
- name: "Install highest dependencies"
|
|
if: ${{ matrix.dependencies == 'highest' }}
|
|
run: "composer update --no-interaction --no-progress"
|
|
|
|
- name: "Tests (PHPUnit 9)"
|
|
if: ${{ matrix.php-version <= '8.0' }}
|
|
run: "vendor/bin/phpunit --configuration phpunit9.xml.dist"
|
|
|
|
- name: "Tests (PHPUnit 10+)"
|
|
if: ${{ matrix.php-version >= '8.1' }}
|
|
run: "vendor/bin/phpunit" |