2020-09-28 11:35:39 -07:00
|
|
|
version: 2.1
|
2019-02-21 12:49:45 -08:00
|
|
|
|
|
|
|
jobs:
|
2020-09-28 11:35:39 -07:00
|
|
|
build_php_version:
|
2019-07-12 16:48:57 -07:00
|
|
|
docker:
|
2022-08-22 09:49:47 -07:00
|
|
|
- image: cimg/php:8.0.20
|
2019-07-12 16:48:57 -07:00
|
|
|
working_directory: ~/ReadOnlyTraitLaravel
|
|
|
|
steps: # a set of executable commands
|
|
|
|
- checkout
|
|
|
|
- run: sudo composer self-update
|
2022-08-22 09:49:47 -07:00
|
|
|
- run: composer install -n --prefer-dist --no-plugins
|
2019-07-12 16:48:57 -07:00
|
|
|
- run: ./vendor/bin/kahlan -reporter=verbose
|
|
|
|
build_latest:
|
2019-02-21 12:57:59 -08:00
|
|
|
docker:
|
2019-06-15 13:09:26 -07:00
|
|
|
- image: circleci/php:latest
|
2019-02-21 12:57:59 -08:00
|
|
|
working_directory: ~/ReadOnlyTraitLaravel
|
|
|
|
steps: # a set of executable commands
|
|
|
|
- checkout
|
|
|
|
- run: sudo composer self-update
|
2022-08-22 09:49:47 -07:00
|
|
|
- run: composer install -n --prefer-dist --no-plugins
|
2019-02-21 12:57:59 -08:00
|
|
|
- run: ./vendor/bin/kahlan -reporter=verbose
|
2019-07-12 16:48:57 -07:00
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
build:
|
|
|
|
jobs:
|
2020-09-28 11:35:39 -07:00
|
|
|
- build_php_version
|
2019-07-12 16:48:57 -07:00
|
|
|
- build_latest
|