Skip to content

Commit

Permalink
Merge c3cc428 into 89a6cff
Browse files Browse the repository at this point in the history
  • Loading branch information
alexislefebvre committed Aug 31, 2018
2 parents 89a6cff + c3cc428 commit e5191b9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2

jobs:
build:
docker:
- image: circleci/php:7.1-fpm-node-browsers
steps:
- checkout
- restore_cache:
keys:
- composer-v1-{{ .Branch }}-{{ checksum "composer.json" }}
# fallback to using the latest cache if no exact match is found
- composer-v1-{{ .Branch }}-
- run: composer require "symfony/symfony:3.4.*" --no-update
- run: composer install --no-interaction --profile --no-progress
- run: php ./vendor/bin/phpspec run --format=pretty
- run: php ./vendor/bin/phpunit
- run: php ./vendor/bin/behat
- save_cache:
key: composer-v1-{{ .Branch }}-{{ checksum "composer.json" }}
paths:
- ~/cache
22 changes: 0 additions & 22 deletions circle.yml

This file was deleted.

0 comments on commit e5191b9

Please sign in to comment.