Skip to content

Commit

Permalink
fix: debug why no configuration file when docker-compose up
Browse files Browse the repository at this point in the history
Signed-off-by: Sammy Huang <[email protected]>
  • Loading branch information
yellow-shine committed Jan 11, 2024
1 parent 7978479 commit 5bce4b7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ jobs:
uses: actions/[email protected]
with:
name: code
- name: print working directory
shell: bash
run: |
pwd
ls -lah
- name: Download Caches
uses: ./.github/actions/cache
with:
Expand All @@ -127,6 +132,8 @@ jobs:
- name: Start Service
shell: bash
run: |
pwd
ls -lah
docker-compose up -d azurite
- name: UT
run: |
Expand Down Expand Up @@ -159,6 +166,11 @@ jobs:
uses: actions/[email protected]
with:
name: code
- name: print working directory
shell: bash
run: |
pwd
ls -lah
- name: Download Caches
uses: ./.github/actions/cache
with:
Expand All @@ -167,6 +179,8 @@ jobs:
- name: Start Service
shell: bash
run: |
pwd
ls -lah
docker-compose up -d pulsar etcd minio azurite
- name: UT
run: |
Expand Down Expand Up @@ -198,6 +212,11 @@ jobs:
uses: actions/[email protected]
with:
name: code
- name: print working directory
shell: bash
run: |
pwd
ls -lah
- name: Download Caches
uses: ./.github/actions/cache
with:
Expand All @@ -206,6 +225,8 @@ jobs:
- name: Start Service
shell: bash
run: |
pwd
ls -lah
docker-compose up -d pulsar etcd minio
- name: IntegrationTest
run: |
Expand Down

0 comments on commit 5bce4b7

Please sign in to comment.