Skip to content

Commit 3e8733e

Browse files
committed
ci: fix docker-compose
1 parent d3e1230 commit 3e8733e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run: composer validate --strict
2020

2121
- name: Setup Docker
22-
run: docker-compose up -d --build
22+
run: docker compose up -d --build
2323

2424
- name: Wait for Server to be ready
2525
run: sleep 10
@@ -28,4 +28,4 @@ jobs:
2828
run: docker compose exec fpm vendor/bin/phpunit --configuration phpunit.xml
2929

3030
- name: Run Swoole Tests
31-
run: docker compose exec swoole vendor/bin/phpunit --configuration phpunit.xml
31+
run: docker compose exec swoole vendor/bin/phpunit --configuration phpunit.xml

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ $ git push origin [name_of_your_new_branch]
6666

6767
### Testing
6868

69-
- `docker-compose up -d`
70-
- `docker-compose exec web vendor/bin/phpunit --configuration phpunit.xml`
71-
- `docker-compose exec web vendor/bin/psalm --show-info=true`
69+
- `docker compose up -d`
70+
- `docker compose exec web vendor/bin/phpunit --configuration phpunit.xml`
71+
- `docker compose exec web vendor/bin/psalm --show-info=true`
7272

7373
## Introducing New Features
7474

0 commit comments

Comments
 (0)