mirror of
https://github.com/michaelachrisco/ReadOnlyTraitLaravel.git
synced 2024-11-01 05:43:22 -07:00
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
|
version: 2.1
|
||
|
|
||
|
jobs:
|
||
|
build_php_version_80:
|
||
|
docker:
|
||
|
- image: cimg/php:8.0.20
|
||
|
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
|
||
|
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
|
||
|
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 --no-plugins
|
||
|
- run: ./vendor/bin/kahlan -reporter=verbose
|
||
|
workflows:
|
||
|
version: 2
|
||
|
build:
|
||
|
jobs:
|
||
|
- build_php_version_80
|
||
|
- build_php_version_81
|
||
|
- build_latest
|