Skip to content

Commit c56de75

Browse files
Drop builds for unsupported php versions
1 parent 5121fc9 commit c56de75

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
operating-system: ['ubuntu-latest']
18-
php-version: ['7.4']
18+
php-version: ['8.1']
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v2
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
fail-fast: true
4141
matrix:
42-
php-version: ['7.4']
42+
php-version: ['8.1']
4343
operating-system: ['ubuntu-latest']
4444

4545
steps:
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
fail-fast: false
6969
matrix:
70-
php-version: ["7.3", "7.4", "8.0", "8.1"]
70+
php-version: ["8.1","8.2"]
7171
operating-system: ["ubuntu-latest"]
7272
experimental: [false]
7373

@@ -81,12 +81,7 @@ jobs:
8181
php-version: ${{ matrix.php-version }}
8282
tools: "composer:v2"
8383

84-
- name: Install dependencies for PHP 7
85-
if: matrix.php-version < '8.0'
86-
run: composer install --no-progress --prefer-dist --optimize-autoloader
87-
88-
- name: Install dependencies for PHP 8
89-
if: matrix.php-version >= '8.0'
84+
- name: Install dependencies
9085
run: composer install --no-progress --prefer-dist --optimize-autoloader --ignore-platform-req=php
9186

9287
- name: Execute tests

0 commit comments

Comments
 (0)