Skip to content

Commit d9514a0

Browse files
committed
CI updates
1 parent e809d8d commit d9514a0

2 files changed

Lines changed: 6 additions & 10 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,20 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
php: ['8.4', '8.5']
13-
symfony: ['7.4.*@beta']
13+
symfony: ['7.4.*', '8.0.*']
1414
composer-flags: ['--prefer-stable']
1515
can-fail: [false]
1616
include:
1717
- php: '8.4'
18-
symfony: '7.4.*@beta'
18+
symfony: '7.4.*'
1919
composer-flags: '--prefer-stable --prefer-lowest'
2020
can-fail: false
21-
- php: '8.5'
22-
symfony: '8.0.*@beta'
23-
composer-flags: '--prefer-stable'
24-
can-fail: true
2521

2622
name: "PHP ${{ matrix.php }} - Symfony ${{ matrix.symfony }}${{ matrix.composer-flags != '' && format(' - Composer {0}', matrix.composer-flags) || '' }}"
2723

2824
steps:
2925
- name: Checkout code
30-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
3127

3228
- name: Setup PHP
3329
uses: shivammathur/setup-php@v2

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ jobs:
1010

1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414

1515
- name: Setup PHP
1616
uses: shivammathur/setup-php@v2
1717
with:
18-
php-version: '8.4'
18+
php-version: '8.5'
1919
tools: composer:v2,flex
2020
extensions: curl, iconv, mbstring, zip
2121
coverage: none
2222

2323
- name: Install dependencies
2424
run: composer update --prefer-stable --prefer-dist
2525
env:
26-
SYMFONY_REQUIRE: '7.4.*@beta'
26+
SYMFONY_REQUIRE: '8.0.*'
2727

2828
- name: Run PHPStan
2929
run: vendor/bin/phpstan analyze --error-format=github

0 commit comments

Comments
 (0)