Skip to content

Commit 2a0c02c

Browse files
Remove unsupported PHP versions from workflow
7.1 and 7.2 are no longer supported by PHP nor should be by our SDK
1 parent 2270fcf commit 2a0c02c

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/php.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,23 @@ name: PHP Composer
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: master
66
pull_request:
7-
branches: [ master ]
7+
branches: master
88

99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
php-versions: ['7.1', '7.2', '7.3', '7.4']
14+
php-versions: ['7.3', '7.4']
1515
name: Build PHP version ${{ matrix.php-versions }}
1616
steps:
1717
- uses: actions/checkout@v2
18-
1918
- uses: shivammathur/setup-php@v2
2019
with:
2120
php-version: ${{ matrix.php-versions }}
22-
2321
- name: Install dependencies
2422
run: composer install --prefer-dist --no-progress
25-
2623
- name: Run test suite
2724
run: composer test

0 commit comments

Comments
 (0)