From df7b3c5a3804fa53a5b2e8e9ad0ff6b128823bb8 Mon Sep 17 00:00:00 2001 From: Gabe Date: Fri, 12 Jan 2024 13:56:43 +0100 Subject: [PATCH] add symfony 7 gitlab CI test --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94ba398..d395747 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,11 +30,16 @@ jobs: deps: stable symfony: '^4.4' - # Test latest php/Symfony + # Test Symfony 6 - php: 8.1 deps: stable symfony: '^6.0' + # Test latest php/Symfony + - php: 8.2 + deps: stable + symfony: '^7.0' + steps: - name: Checkout code uses: 'actions/checkout@v2'