mirror of
https://github.com/opdavies/gmail-filter-builder.git
synced 2025-02-02 08:57:31 +00:00
27 lines
715 B
YAML
27 lines
715 B
YAML
# PHP CircleCI 2.0 configuration file
|
|
#
|
|
# Check https://circleci.com/docs/2.0/language-php/ for more details
|
|
#
|
|
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/php:7.1-browsers
|
|
working_directory: ~/repo
|
|
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
|