Skip to content

Commit 86d435e

Browse files
authored
Merge pull request #187 from stof/ci
Update the CI setup
2 parents c305872 + 95a94ea commit 86d435e

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ jobs:
1414
name: Check composer.json
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: shivammathur/setup-php@v2
1919
with:
2020
coverage: none
21-
php-version: '8.2'
21+
php-version: '8.4'
2222
- run: composer validate --strict --no-check-lock
2323

2424
static_analysis:
2525
name: Static analysis
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- uses: shivammathur/setup-php@v2
3030
with:
3131
coverage: none
32-
php-version: '8.2'
32+
php-version: '8.4'
3333
- name: Install dependencies
3434
run: composer update --ansi --no-progress --prefer-dist --no-interaction
3535
- run: vendor/bin/phpstan analyze
@@ -39,18 +39,18 @@ jobs:
3939
runs-on: ubuntu-latest
4040
strategy:
4141
matrix:
42-
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
42+
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
4343
minimum_stability: [ 'stable' ]
4444
name_suffix: [ '' ]
4545
implementation: [ 'http_kernel' ]
4646
include:
47-
- php: '8.2'
47+
- php: '8.4'
4848
minimum_stability: dev
4949
implementation: 'http_kernel'
5050
name_suffix: ' and dev deps'
51-
- php: '8.2'
51+
- php: '8.4'
5252
implementation: http_client
53-
- php: '8.2'
53+
- php: '8.4'
5454
minimum_stability: dev
5555
implementation: 'http_client'
5656
name_suffix: ' and dev deps'
@@ -61,7 +61,7 @@ jobs:
6161

6262
steps:
6363
- name: Checkout
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565
with:
6666
fetch-depth: 2
6767

@@ -71,6 +71,7 @@ jobs:
7171
coverage: "xdebug"
7272
php-version: "${{ matrix.php }}"
7373
tools: composer
74+
ini-file: 'development'
7475

7576
- name: Configure for minimum stability
7677
if: "${{ matrix.minimum_stability == 'dev' }}"

0 commit comments

Comments
 (0)