Skip to content

Commit 06b4b26

Browse files
🔧 Add circleci
1 parent 35a4b1c commit 06b4b26

File tree

3 files changed

+39
-17
lines changed

3 files changed

+39
-17
lines changed

.circleci/config.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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

circle.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)