2023-03-10 16:52:34 -08:00
|
|
|
version: 2.1
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_php_version_81:
|
|
|
|
docker:
|
|
|
|
- image: cimg/php:8.1.14
|
|
|
|
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
|
2023-10-27 13:04:40 -07:00
|
|
|
build_php_version_82:
|
2023-03-10 16:52:34 -08:00
|
|
|
docker:
|
2023-10-27 13:04:40 -07:00
|
|
|
- image: cimg/php:8.2.12
|
2023-03-10 16:52:34 -08:00
|
|
|
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
|
2024-01-17 12:11:19 -08:00
|
|
|
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
|
2023-03-10 16:52:34 -08:00
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
build:
|
|
|
|
jobs:
|
|
|
|
- build_php_version_81
|
2023-10-27 13:04:40 -07:00
|
|
|
- build_php_version_82
|
2024-01-17 12:11:19 -08:00
|
|
|
- build_php_version_83
|