Skip to content

Commit

Permalink
ci: use docker compose (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
simPod authored Oct 9, 2024
1 parent 7847029 commit 1858ed8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
with:
fetch-depth: 2

- name: "Build the docker-compose stack"
run: "docker-compose -f tests/docker-compose.yaml up -d"
- name: "Build the docker compose stack"
run: "docker compose -f tests/docker-compose.yaml up -d"

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
Expand Down Expand Up @@ -96,8 +96,8 @@ jobs:
with:
fetch-depth: 2

- name: "Build the docker-compose stack"
run: "docker-compose -f tests/docker-compose.yaml up -d"
- name: "Build the docker compose stack"
run: "docker compose -f tests/docker-compose.yaml up -d"

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/infection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Build the docker-compose stack
run: docker-compose -f tests/docker-compose.yaml up -d
- name: Build the docker compose stack
run: docker compose -f tests/docker-compose.yaml up -d

- name: Install PHP
uses: shivammathur/setup-php@v2
Expand Down

0 comments on commit 1858ed8

Please sign in to comment.