Skip to content

Commit

Permalink
Test against php 8.3 (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiy-petrov authored Oct 5, 2023
1 parent 2966fcc commit 765aa2d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
php-versions: [ '8.2', '8.1' ]
php-versions: [ '8.3', '8.2', '8.1' ]
dependency-stability: [ prefer-stable ]

laravel: [ '10.*', '9.*' ]
Expand Down Expand Up @@ -74,4 +74,4 @@ jobs:
DB_PORT: 33306
DB_USERNAME: root

run: vendor/bin/phpunit --testdox
run: vendor/bin/phpunit --testdox
4 changes: 2 additions & 2 deletions .github/workflows/run-tests-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
php-versions: [ '8.2', '8.1' ]
php-versions: [ '8.3', '8.2', '8.1' ]
dependency-stability: [ prefer-stable ]

laravel: [ '10.*', '9.*']
Expand Down Expand Up @@ -88,4 +88,4 @@ jobs:
DB_USERNAME: postgres
DB_PASSWORD: postgres

run: vendor/bin/phpunit --testdox
run: vendor/bin/phpunit --testdox
8 changes: 6 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
php-versions: [ '8.2', '8.1', '8.0', '7.4', '7.3', '7.2' ]
php-versions: [ '8.3', '8.2', '8.1', '8.0', '7.4', '7.3', '7.2' ]
dependency-stability: [ prefer-stable ]
laravel: [ '10.*', '9.*', '8.*', '7.*', '6.*' ]

Expand Down Expand Up @@ -47,12 +47,16 @@ jobs:
php-versions: 7.4
- laravel: 8.*
php-versions: 7.2
- laravel: 7.*
php-versions: 8.3
- laravel: 7.*
php-versions: 8.2
- laravel: 7.*
php-versions: 8.1
- laravel: 7.*
php-versions: 8.0
- laravel: 6.*
php-versions: 8.3
- laravel: 6.*
php-versions: 8.2
- laravel: 6.*
Expand Down Expand Up @@ -89,4 +93,4 @@ jobs:
DB_CONNECTION: sqlite
DB_DATABASE: ":memory:"

run: vendor/bin/phpunit --testdox
run: vendor/bin/phpunit --testdox

0 comments on commit 765aa2d

Please sign in to comment.