Skip to content

Commit 41b74ff

Browse files
committed
ci: fix docker-compose
1 parent be02515 commit 41b74ff

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
php-version: '8.1'
1717

1818
- name: Setup Docker
19-
run: docker-compose up -d --build
19+
run: docker compose up -d --build
2020

2121
- name: Wait for Server to be ready
2222
run: sleep 10
2323

2424
- name: Run FPM Tests
2525
run: docker compose exec fpm vendor/bin/phpunit --configuration phpunit.xml
26-
26+
2727
- name: Run Swoole Tests
28-
run: docker compose exec swoole vendor/bin/phpunit --configuration phpunit.xml
28+
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)