Skip to content

Commit

Permalink
Add PHP 8.2 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
norkunas committed Jan 18, 2023
1 parent e95db9e commit 89b16d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.1
- name: Install dependencies
run: composer update --prefer-dist --no-progress
- name: Run linter
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.2
- name: Install dependencies
run: composer update --prefer-dist --no-progress
- name: Run types tests with PHPStan
Expand All @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1']
php-versions: ['7.4', '8.0', '8.1', '8.2']
name: integration-tests (PHP ${{ matrix.php-versions }})
steps:
- uses: actions/checkout@v1
Expand Down
3 changes: 2 additions & 1 deletion bors.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ status = [
'phpstan-tests',
'integration-tests (PHP 7.4)',
'integration-tests (PHP 8.0)',
'integration-tests (PHP 8.1)'
'integration-tests (PHP 8.1)',
'integration-tests (PHP 8.2)'
]
# 1 hour timeout
timeout-sec = 3600

0 comments on commit 89b16d6

Please sign in to comment.