Skip to content

Commit

Permalink
chore(ci): add php 8.3, upgrade EOL PHP versions to 8.1 (#2534)
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer committed Dec 20, 2023
1 parent 8c66021 commit e714752
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/sync-repo-settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ branchProtectionRules:
- 'PHP 8.0 Unit Test'
- 'PHP 8.1 Unit Test'
- 'PHP 8.2 Unit Test'
- 'PHP 8.2 --prefer-lowest Unit Test'
- 'PHP 8.3 Unit Test'
- 'PHP 8.3 --prefer-lowest Unit Test'
- 'PHP Style Check'
- 'cla/google'
requiredApprovingReviewCount: 1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ "7.4", "8.0", "8.1", "8.2" ]
php: [ "7.4", "8.0", "8.1", "8.2", "8.3" ]
composer-flags: [""]
include:
- php: "7.4"
composer-flags: "--prefer-lowest "
- php: "8.2"
- php: "8.3"
composer-flags: "--prefer-lowest "
name: PHP ${{ matrix.php }} ${{ matrix.composer-flags }}Unit Test
steps:
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
php-version: "8.1"
- name: Install Dependencies
uses: nick-invision/retry@v2
with:
Expand All @@ -59,7 +59,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
- name: Run Script
run: |
composer install
Expand Down

0 comments on commit e714752

Please sign in to comment.