From ed18b546a3d547e1dd500fe39985b5fa75631d4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Boursin?= Date: Mon, 1 Jan 2024 17:35:58 +0100 Subject: [PATCH] feat: add symfony versions to the CI --- .github/workflows/ci.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c3fcafa..36ad189 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,6 +26,9 @@ jobs: php-versions: - 8.2 - 8.3 + symfony-versions: + - ^6.3 + - ^7.0 steps: - name: checkout uses: actions/checkout@master @@ -41,6 +44,11 @@ jobs: coverage: none extensions: mbstring, fileinfo, json, intl, dom - name: composer install + run: composer require \ + symfony/framework-bundle:${{ matrix.symfony-versions }} --no-update \ + symfony/uid:${{ matrix.symfony-versions }} --no-update \ + symfony/yaml:${{ matrix.symfony-versions }} --no-update + - name: composer update run: composer update --prefer-stable - name: tests run: vendor/bin/phpunit