Skip to content

Merge pull request #4 from portrino/feature/symfony-v7 #136

Merge pull request #4 from portrino/feature/symfony-v7

Merge pull request #4 from portrino/feature/symfony-v7 #136

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' ]