Less blank lines

This commit is contained in:
Oliver Davies 2018-01-03 20:35:03 +00:00
parent 685c504f32
commit a97b0421df

View file

@ -6,24 +6,18 @@ jobs:
- image: circleci/php:7.1
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "composer.json" }}
- v1-dependencies-
- run: composer install -n --prefer-dist
- save_cache:
paths:
- ./vendor
key: v1-dependencies-{{ checksum "composer.json" }}
- run: ./vendor/bin/phpunit --log-junit ~/phpunit/junit.xml
- store_test_results:
path: ~/phpunit
- store_artifacts:
path: ~/phpunit
@ -34,14 +28,10 @@ jobs:
- run:
name: Install system packages.
command: pip install --upgrade pip && pip install ansible
- checkout
- restore_cache:
key: v1-{{ .Branch }}-{{ checksum "./ansible/requirements.yml" }}
- run: ansible-galaxy install -r ansible/requirements.yml
- save_cache:
key: v1-{{ .Branch }}-{{ checksum "./ansible/requirements.yml" }}
paths: