Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Refactor as a single-class bundle #101

Refactor as a single-class bundle

Refactor as a single-class bundle #101

Workflow file for this run

name: Tests
on: ['push', 'pull_request']
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.2, 8.3, 8.4]
symfony: [6.4.*, 7.3.*]
dependency-version: [stable]
include:
- { php: 8.2, symfony: 6.4.*, dependency: lowest }
- { php: 8.3, symfony: 7.4.*, dependency: highest }
- { php: 8.4, symfony: 8.0.*, dependency: highest }
env:
SYMFONY_REQUIRE: ${{ matrix.symfony }}
name: Tests P${{ matrix.php }} - SF${{ matrix.symfony }} - ubuntu-latest - ${{ matrix.dependency }}
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, mbstring, zip
coverage: none
tools: flex
- name: Install Composer dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.php }}
- name: Integration Tests
run: php ./vendor/bin/simple-phpunit