Skip to content

Commit fae3ebc

Browse files
committed
try with docker compe simple
1 parent 21a19e0 commit fae3ebc

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

.github/workflows/build_and_test_new_on_tenant_users_branch.yml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,22 @@ jobs:
1919
- name: Checkout repo
2020
uses: actions/checkout@v4
2121

22-
- name: Set up Docker Compose
23-
uses: hoverkraft-tech/compose-action@v2.0.2
24-
with:
25-
compose-file: |
26-
docker-compose.yml
27-
docker-integration-tests.yml
22+
- name: Run docker compose
23+
run: docker-compose -f docker-compose.yml -f docker-integration-tests.yml up -d
24+
working-directory: ./
25+
26+
# - name: Set up Docker Compose
27+
# uses: hoverkraft-tech/compose-action@v2.0.2
28+
# with:
29+
# compose-file: |
30+
# docker-compose.yml
31+
# docker-integration-tests.yml
2832

2933
- name: Setup .NET
3034
uses: actions/setup-dotnet@v3
3135
with:
3236
dotnet-version: 8.0.x
3337

34-
- name: Wait for server to be ready
35-
run: |
36-
while ! curl -s http://localhost:8082 > /dev/null; do
37-
echo "Waiting for server..."
38-
sleep 5
39-
done
40-
shell: bash
41-
4238
- name: Restore dependencies
4339
run: dotnet restore
4440
working-directory: ./src/

0 commit comments

Comments
 (0)