mirror of
https://github.com/opdavies/gmail-filter-builder.git
synced 2025-02-09 19:33:20 +00:00
23 lines
580 B
YAML
23 lines
580 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.5-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
|