Skip to content

Commit e84e8f0

Browse files
committed
Minor fixes
1 parent 34a6a9c commit e84e8f0

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/.git
33
/.dockerignore
44
/.editorconfig
5+
/.env.example
56
/.gitattributes
67
/.github
78
/.gitignore

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
/tests export-ignore
55
/.dockerignore export-ignore
66
/.editorconfig export-ignore
7+
/.env.example export-ignore
78
/.gitattributes export-ignore
89
/.gitignore export-ignore
910
/.php_cs export-ignore

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ composer.lock
1919

2020
# Env variables
2121
.env
22-
php.env

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
COMPOSE_PROJECT_NAME=yii2-queue
22
COMPOSE_FILE=tests/docker-compose.yml
33

4+
build:
5+
@cp -n .env.example .env
6+
docker-compose pull
7+
docker-compose build --pull
8+
49
test: test73 test72 test71 test70 test56
510
test73:
611
docker-compose build --pull php73
@@ -45,10 +50,6 @@ benchmark56:
4550
docker-compose run php56 tests/yii benchmark/waiting
4651
docker-compose down
4752

48-
build:
49-
docker-compose pull
50-
docker-compose build --pull
51-
5253
check-cs:
5354
docker-compose build php72
5455
docker-compose run php72 php-cs-fixer fix --diff --dry-run

0 commit comments

Comments
 (0)