mirror of
https://github.com/michaelachrisco/ReadOnlyTraitLaravel.git
synced 2024-10-31 21:33:23 -07:00
fix(circleci): Library should work with php 8.3
This commit is contained in:
parent
a1dbc56071
commit
f65c32b7f9
1 changed files with 10 additions and 0 deletions
|
@ -19,9 +19,19 @@ jobs:
|
||||||
- run: sudo composer self-update
|
- run: sudo composer self-update
|
||||||
- run: composer install -n --prefer-dist --no-plugins
|
- run: composer install -n --prefer-dist --no-plugins
|
||||||
- run: ./vendor/bin/kahlan -reporter=verbose
|
- run: ./vendor/bin/kahlan -reporter=verbose
|
||||||
|
build_php_version_83:
|
||||||
|
docker:
|
||||||
|
- image: cimg/php:8.3.0
|
||||||
|
working_directory: ~/ReadOnlyTraitLaravel
|
||||||
|
steps: # a set of executable commands
|
||||||
|
- checkout
|
||||||
|
- run: sudo composer self-update
|
||||||
|
- run: composer install -n --prefer-dist --no-plugins
|
||||||
|
- run: ./vendor/bin/kahlan -reporter=verbose
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
build:
|
build:
|
||||||
jobs:
|
jobs:
|
||||||
- build_php_version_81
|
- build_php_version_81
|
||||||
- build_php_version_82
|
- build_php_version_82
|
||||||
|
- build_php_version_83
|
||||||
|
|
Loading…
Reference in a new issue