File tree Expand file tree Collapse file tree 2 files changed +37
-34
lines changed
Expand file tree Collapse file tree 2 files changed +37
-34
lines changed Original file line number Diff line number Diff line change 1+ version : 2.1
2+
3+ jobs :
4+ build_php_version_80 :
5+ docker :
6+ - image : cimg/php:8.0.20
7+ working_directory : ~/ReadOnlyTraitLaravel
8+ steps : # a set of executable commands
9+ - checkout
10+ - run : sudo composer self-update
11+ - run : composer install -n --prefer-dist --no-plugins
12+ - run : ./vendor/bin/kahlan -reporter=verbose
13+ build_php_version_81 :
14+ docker :
15+ - image : cimg/php:8.1.14
16+ working_directory : ~/ReadOnlyTraitLaravel
17+ steps : # a set of executable commands
18+ - checkout
19+ - run : sudo composer self-update
20+ - run : composer install -n --prefer-dist --no-plugins
21+ - run : ./vendor/bin/kahlan -reporter=verbose
22+ build_latest :
23+ docker :
24+ - image : circleci/php:latest
25+ working_directory : ~/ReadOnlyTraitLaravel
26+ steps : # a set of executable commands
27+ - checkout
28+ - run : sudo composer self-update
29+ - run : composer install -n --prefer-dist --no-plugins
30+ - run : ./vendor/bin/kahlan -reporter=verbose
31+ workflows :
32+ version : 2
33+ build :
34+ jobs :
35+ - build_php_version_80
36+ - build_php_version_81
37+ - build_latest
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments