55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
name: "PHPUnit tests"
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
|
|
jobs:
|
|
phpunit:
|
|
name: "PHPUnit tests"
|
|
|
|
runs-on: "ubuntu-latest"
|
|
|
|
strategy:
|
|
matrix:
|
|
dependencies:
|
|
- "highest"
|
|
php-version:
|
|
- "7.2"
|
|
- "7.3"
|
|
- "7.4"
|
|
- "8.0"
|
|
- "8.1"
|
|
- "8.2"
|
|
- "8.3"
|
|
- "8.4"
|
|
|
|
include:
|
|
- php-version: '7.2'
|
|
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"
|
|
run: "vendor/bin/phpunit"
|