From a2228173507bbe12cfe8931400ae7c3e1a80a183 Mon Sep 17 00:00:00 2001 From: Cristoforo Cervino Date: Thu, 12 Oct 2023 16:33:35 +0200 Subject: [PATCH] fix: fix github actions --- .github/workflows/workflow.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index e1e31e6..b39e181 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -24,23 +24,13 @@ jobs: run: composer install - name: CS Check run: composer cs-check - tests: + name: PHP ${{ matrix.php }} / SF ^${{ matrix.symfony }} runs-on: ubuntu-latest strategy: matrix: - name: - - 'PHP 8.0 tests (Symfony 5.4)' - - 'PHP 8.1 tests (Symfony 6.2)' - - 'PHP 8.1 tests (Symfony 6.3)' - include: - - php: '8.0' - symfony: 5.4.* - - php: '8.1' - symfony: 6.2.* - - php: '8.1' - symfony: 6.3.* - name: ${{ matrix.name }} + php: ['8.1'] + symfony: ['5.4.*', '6.2.*', '6.3.*'] steps: - name: Checkout uses: actions/checkout@v2