try to test against PHP 8.2
This commit is contained in:
parent
30919b1f7b
commit
aa4f6bce69
2 changed files with 4 additions and 3 deletions
6
.github/workflows/phpunit.yml
vendored
6
.github/workflows/phpunit.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
name: Unit Testing
|
name: Unit Testing
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
pull_request:
|
pull_request:
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -15,7 +15,7 @@ jobs:
|
||||||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10
|
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['5.6', '7.2', '7.3', '7.4', '8.0', '8.1']
|
php-versions: ['5.6', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -24,7 +24,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
php-version: ${{ matrix.php-versions }}
|
php-version: ${{ matrix.php-versions }}
|
||||||
coverage: none
|
coverage: none
|
||||||
tools: composer, phpunit-polyfills
|
tools: composer, phpunit-polyfills
|
||||||
extensions: mysql
|
extensions: mysql
|
||||||
- name: Install Composer dependencies for PHP
|
- name: Install Composer dependencies for PHP
|
||||||
uses: "ramsey/composer-install@v1"
|
uses: "ramsey/composer-install@v1"
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,3 +5,4 @@ composer.lock
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea/
|
.idea/
|
||||||
.php_cs.cache
|
.php_cs.cache
|
||||||
|
.vscode/settings.json
|
||||||
|
|
Loading…
Reference in a new issue