Skip to content

Commit

Permalink
Merge pull request #34 from Local-Data-Exchange/feature/checking_test…
Browse files Browse the repository at this point in the history
…case_failure

Add laravel 6 config
  • Loading branch information
aman00323 authored Apr 16, 2020
2 parents b13ef3a + 6f796bf commit c4f35fb
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
33 changes: 31 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ commands:
steps:
- checkout
- run: echo 'export APP_ENV="test"' >> $BASH_ENV
- run: composer require "laravel/framework=5.8.*" --prefer-source --no-interaction --no-suggest
- run: composer update << parameters.composer_flags >> --no-interaction --prefer-source
- run: composer install
- run: ./vendor/bin/phpunit

workflows:
Expand All @@ -22,8 +21,12 @@ workflows:
jobs:
- php72-laravel58
- php72-laravel58-prefer-lowest
- php72-laravel60
- php72-laravel60-prefer-lowest
- php73-laravel58
- php73-laravel58-prefer-lowest
- php73-laravel60
- php73-laravel60-prefer-lowest

jobs:
php72-laravel58-prefer-lowest:
Expand All @@ -39,6 +42,19 @@ jobs:
steps:
- install_and_test:
laravel: 5.8.*
php72-laravel60:
docker:
- image: circleci/php:7.2
steps:
- install_and_test:
laravel: 6.0.*
php72-laravel60-prefer-lowest:
docker:
- image: circleci/php:7.2
steps:
- install_and_test:
laravel: 6.0.*
composer_flags: --prefer-lowest
php73-laravel58-prefer-lowest:
docker:
- image: circleci/php:7.3
Expand All @@ -52,3 +68,16 @@ jobs:
steps:
- install_and_test:
laravel: 5.8.*
php73-laravel60-prefer-lowest:
docker:
- image: circleci/php:7.3
steps:
- install_and_test:
laravel: 6.0.*
composer_flags: --prefer-lowest
php73-laravel60:
docker:
- image: circleci/php:7.3
steps:
- install_and_test:
laravel: 6.0.*
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# CHANGELOG
## 0.1.23
- Added form_params support.
- Update circle ci config to test with laravel 6.
- Update circle ci to run testcases smoothly and fast.

## 0.1.22
- This version include support of call back function for prometheus config.
Expand Down

0 comments on commit c4f35fb

Please sign in to comment.