Skip to content

Commit

Permalink
Multiple version of PHP for testing (#33)
Browse files Browse the repository at this point in the history
* Attempt multiple version of PHP for testing

* Update config.yml

* Use combination of workflows
  • Loading branch information
michaelachrisco authored Jul 12, 2019
1 parent 662155d commit 1d8d4a9
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
version: 2

jobs:
build:
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
Expand All @@ -10,3 +19,9 @@ jobs:
- 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

0 comments on commit 1d8d4a9

Please sign in to comment.