Skip to content

Commit 7d694a3

Browse files
ci: add PHP 8.5 to test matrix (#191)
* ci: Add tests for PHP 8.4 in Pull Requests * Upgrade PHP versions and checkout action Updated PHP versions to include 8.5 and upgraded checkout action to v5. * Disable fail-fast in test strategy * Remove fail-fast from test strategy in workflow Removed fail-fast option from test strategy. * ci: Add tests for PHP 8.5 --------- Co-authored-by: Christopher Georg <christopher.georg@sr-travel.de>
1 parent 762ba02 commit 7d694a3

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
lint:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313

1414
- name: Setup PHP
1515
uses: shivammathur/setup-php@v2
@@ -24,10 +24,10 @@ jobs:
2424
strategy:
2525
matrix:
2626
operating-system: [ubuntu-latest]
27-
php-versions: ['8.1', '8.2', '8.3', '8.4']
27+
php-versions: ['8.1', '8.2', '8.3', '8.4', '8.5']
2828
runs-on: ${{ matrix.operating-system }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131

3232
- name: Setup PHP
3333
uses: shivammathur/setup-php@v2

.github/workflows/pull-request.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
lint:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313

1414
- name: Setup PHP
1515
uses: shivammathur/setup-php@v2
@@ -24,10 +24,11 @@ jobs:
2424
strategy:
2525
matrix:
2626
operating-system: [ubuntu-latest]
27-
php-versions: ['8.1', '8.2', '8.3', '8.4']
27+
php-versions: ['8.1', '8.2', '8.3', '8.4', '8.5']
28+
2829
runs-on: ${{ matrix.operating-system }}
2930
steps:
30-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3132

3233
- name: Setup PHP
3334
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)