This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/.circleci/config.yml
2017-12-27 21:03:50 +00:00

44 lines
840 B
YAML

version: 2
jobs:
build_and_test:
docker:
- 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
workflows:
version: 2
build_test_and_deploy:
jobs:
- build_and_test
nightly:
jobs:
- build_and_test
triggers:
- schedule:
cron: "0 4 * * *"
filters:
branches:
only: master