Skip to content

Commit

Permalink
Reset CircleCI config with additional php version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelachrisco committed Mar 11, 2023
1 parent f89b169 commit be00ff1
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .circleci/.config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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

0 comments on commit be00ff1

Please sign in to comment.