Skip to content

[BUGFIX] lower version contraint of dev package to fullfill php >= 8.… #132

[BUGFIX] lower version contraint of dev package to fullfill php >= 8.…

[BUGFIX] lower version contraint of dev package to fullfill php >= 8.… #132

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
testsuite:
name: all tests
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
coverage: none
tools: composer:v2
- name: "Composer Install"
run: "composer install"
- name: "Run Static Code Analysis"
run: "composer ci:static"
- name: "Run BDD Tests"
run: "composer ci:test:behat"
strategy:
fail-fast: false
matrix:
php: [ '8.0', '8.1', '8.2', '8.3' ]