Support PHP 8.3 #913
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test Suite" | |
on: | |
pull_request: | |
push: | |
branches: | |
- "6.x" | |
schedule: | |
- cron: '0 8 * * *' | |
jobs: | |
tests: | |
name: "Tests" | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
dependencies: | |
- "lowest" | |
- "highest" | |
php-version: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
operating-system: | |
- "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v2" | |
- 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 --no-suggest" | |
- name: "Install highest dependencies" | |
if: ${{ matrix.dependencies == 'highest' }} | |
run: "composer update --no-interaction --no-progress --no-suggest" | |
- name: "Tests" | |
run: "composer test" | |
static-analyze: | |
name: "Static Analyze" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v2" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "pcov" | |
php-version: "8.1" | |
ini-values: memory_limit=-1 | |
tools: composer:v2 | |
- name: "Install dependencies" | |
run: "composer update --no-interaction --no-progress --no-suggest" | |
- name: "Static Analyze" | |
run: "composer static:analyze" | |
mutation-tests: | |
name: "Mutation Tests" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v2" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "pcov" | |
tools: composer:v2 | |
php-version: "8.1" | |
ini-values: memory_limit=-1 | |
- name: "Install dependencies" | |
run: "composer update --no-interaction --no-progress --no-suggest" | |
- name: "Mutation Tests" | |
run: "composer test:mutation" |