Skip to content

Retire PHP 7.2 and 7.3 and introduce PHP 8.3 #146

Retire PHP 7.2 and 7.3 and introduce PHP 8.3

Retire PHP 7.2 and 7.3 and introduce PHP 8.3 #146

Workflow file for this run

name: Behat Tests
on:
workflow_dispatch:
pull_request:
paths:
- '**/behat.yml'
- 'composer.*'
- 'behat.*'
- 'src/**'
- 'resources/**'
- 'tests/Behat/**'
- 'tests/fixtures/**'
push:
paths:
- '**/behat.yml'
- 'composer.*'
- 'behat.*'
- 'src/**'
- 'resources/**'
- 'tests/Behat/**'
- 'tests/fixtures/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run-tests:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}
strategy:
fail-fast: false
matrix:
php-version: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
composer-version: [ 'v2.1', 'v2.2', 'v2.3', 'v2.4', 'v2.5' ]
include:
- php-version: '8.1'
composer-version: 'v2'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer:${{ matrix.composer-version }}
coverage: none
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On
- name: Install Composer dependencies
uses: ramsey/composer-install@v2
- name: Run Behat
run: ./vendor/bin/behat --colors