Skip to content

Commit e39f062

Browse files
Merge pull request #51 from michaelachrisco/reset-circleci
Reset CircleCI config with additional php version
2 parents f89b169 + be00ff1 commit e39f062

File tree

2 files changed

+37
-34
lines changed

2 files changed

+37
-34
lines changed

.circleci/config.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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

.github/workflows/build_test.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)