mirror of
https://github.com/michaelachrisco/ReadOnlyTraitLaravel.git
synced 2024-10-31 21:33:23 -07:00
Michael Chrisco
1d8d4a981c
* Attempt multiple version of PHP for testing * Update config.yml * Use combination of workflows
27 lines
706 B
YAML
27 lines
706 B
YAML
version: 2
|
|
|
|
jobs:
|
|
build_7.3:
|
|
docker:
|
|
- image: circleci/php:7.3
|
|
working_directory: ~/ReadOnlyTraitLaravel
|
|
steps: # a set of executable commands
|
|
- checkout
|
|
- run: sudo composer self-update
|
|
- run: composer install -n --prefer-dist
|
|
- run: ./vendor/bin/kahlan -reporter=verbose
|
|
build_latest:
|
|
docker:
|
|
- image: circleci/php:latest
|
|
working_directory: ~/ReadOnlyTraitLaravel
|
|
steps: # a set of executable commands
|
|
- checkout
|
|
- run: sudo composer self-update
|
|
- run: composer install -n --prefer-dist
|
|
- run: ./vendor/bin/kahlan -reporter=verbose
|
|
workflows:
|
|
version: 2
|
|
build:
|
|
jobs:
|
|
- build_7.3
|
|
- build_latest
|