From f7eb93f9481b153dc89d3471522decd898007363 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 9 Jul 2024 14:59:49 +0200 Subject: [PATCH] ci: add testrun for PHP 8.4 and symfony 7.1 --- .github/workflows/ci.yml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38b560d..920e011 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ 8.1, 8.2, 8.3 ] + php: [ 8.1, 8.2, 8.3, 8.4 ] deps: [ highest ] symfony: [ 6.4.* ] include: @@ -21,6 +21,9 @@ jobs: symfony: '*' - php: 8.3 symfony: '7.0.*' + - php: 8.4 + symfony: '7.1.*' + steps: - uses: zenstruck/.github/actions/php-test-symfony@main with: @@ -37,24 +40,24 @@ jobs: sca: uses: zenstruck/.github/.github/workflows/php-stan.yml@main - fixcs: - name: Run php-cs-fixer - needs: sync-with-template + sync-with-template: + name: Sync meta files if: (github.event_name == 'push' || github.event_name == 'schedule') && !startsWith(github.ref, 'refs/tags') && github.repository_owner == 'zenstruck' runs-on: ubuntu-latest steps: - - uses: zenstruck/.github@php-cs-fixer + - uses: zenstruck/.github@sync-with-template with: - php: 8.1 key: ${{ secrets.GPG_PRIVATE_KEY }} token: ${{ secrets.COMPOSER_TOKEN }} - sync-with-template: - name: Sync meta files + fixcs: + name: Run php-cs-fixer + needs: sync-with-template if: (github.event_name == 'push' || github.event_name == 'schedule') && !startsWith(github.ref, 'refs/tags') && github.repository_owner == 'zenstruck' runs-on: ubuntu-latest steps: - - uses: zenstruck/.github@sync-with-template + - uses: zenstruck/.github@php-cs-fixer with: + php: 8.1 key: ${{ secrets.GPG_PRIVATE_KEY }} token: ${{ secrets.COMPOSER_TOKEN }}