Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

chore: Migrate away from ContainerAwareInterface + Allow Symfony 7 #80

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ci: Fix ci to run on symfony 7 using php matrix
  • Loading branch information
aszenz committed Jan 26, 2024
commit edbdf0a467fa718d3ed497d2ac27fad0241399c3
16 changes: 14 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ jobs:
symfony-version:
- '^5.4'
- '^6.0'
- '^7.0'
php-version:
- '8.0'
- '8.1'
- '8.2'
exclude:
- symfony-version: '^5.4'
php-version: '8.2'
- symfony-version: '^7.0'
php-version: '8.0'
- symfony-version: '^7.0'
php-version: '8.1'
steps:
- name: 'Checkout code'
uses: actions/checkout@v2.3.3
Expand All @@ -22,13 +34,13 @@ jobs:
uses: shivammathur/setup-php@2.7.0
with:
coverage: none
php-version: '8.0'
php-version: ${{ matrix.php-version }}
tools: composer:v2
extensions: mbstring
ini-values: date.timezone=UTC

- name: 'Configure Symfony version'
run: composer require --dev --no-update "symfony/symfony:${{ matrix.symfony-version }}"
run: composer require --dev --no-update "symfony/yaml:${{ matrix.symfony-version }}"

- name: 'Install project dependencies'
run: composer update --prefer-dist --prefer-stable
Expand Down