File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2
2
/.git
3
3
/.dockerignore
4
4
/.editorconfig
5
+ /.env.example
5
6
/.gitattributes
6
7
/.github
7
8
/.gitignore
Original file line number Diff line number Diff line change 4
4
/tests export-ignore
5
5
/.dockerignore export-ignore
6
6
/.editorconfig export-ignore
7
+ /.env.example export-ignore
7
8
/.gitattributes export-ignore
8
9
/.gitignore export-ignore
9
10
/.php_cs export-ignore
Original file line number Diff line number Diff line change @@ -19,4 +19,3 @@ composer.lock
19
19
20
20
# Env variables
21
21
.env
22
- php.env
Original file line number Diff line number Diff line change 1
1
COMPOSE_PROJECT_NAME =yii2-queue
2
2
COMPOSE_FILE =tests/docker-compose.yml
3
3
4
+ build :
5
+ @cp -n .env.example .env
6
+ docker-compose pull
7
+ docker-compose build --pull
8
+
4
9
test : test73 test72 test71 test70 test56
5
10
test73 :
6
11
docker-compose build --pull php73
@@ -45,10 +50,6 @@ benchmark56:
45
50
docker-compose run php56 tests/yii benchmark/waiting
46
51
docker-compose down
47
52
48
- build :
49
- docker-compose pull
50
- docker-compose build --pull
51
-
52
53
check-cs :
53
54
docker-compose build php72
54
55
docker-compose run php72 php-cs-fixer fix --diff --dry-run
You can’t perform that action at this time.
0 commit comments