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
+ - image : circleci/java:8-jdk
8
+ environment :
9
+ TZ : ' /usr/share/zoneinfo/Europe/Paris'
10
+ working_directory : ~/Symfony-custom-coding-standard
11
+
12
+ jobs :
13
+ test :
14
+ executor : php
15
+ steps :
16
+ - checkout
17
+ - restore_cache :
18
+ keys :
19
+ - v1-dependencies-{{ checksum "composer.lock" }}
20
+ - v1-dependencies-
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