File tree Expand file tree Collapse file tree 3 files changed +39
-17
lines changed Expand file tree Collapse file tree 3 files changed +39
-17
lines changed Original file line number Diff line number Diff line change 1+ version : 2.1
2+
3+ executors :
4+ php :
5+ docker :
6+ - image : circleci/php:7.1
7+ environment :
8+ TZ : ' /usr/share/zoneinfo/Europe/Paris'
9+ working_directory : ~/Symfony-custom-coding-standard
10+
11+ jobs :
12+ test :
13+ executor : php
14+ steps :
15+ - checkout
16+ - restore_cache :
17+ keys :
18+ - v1-dependencies-{{ checksum "composer.lock" }}
19+ - v1-dependencies-
20+ - run : sudo apt-get install -y ant
21+ - run : ant test
22+ - save_cache :
23+ paths :
24+ - vendor
25+ key : v1-dependencies-{{ checksum "composer.lock" }}
26+
27+ workflows :
28+ version : 2
29+ check :
30+ jobs :
31+ - test
Original file line number Diff line number Diff line change 1+ root = true
2+
3+ [* ]
4+ end_of_line = lf
5+ insert_final_newline = true
6+ indent_style = space
7+ indent_size = 4
8+ charset = utf-8
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments