Skip to content

Commit

Permalink
Update scripts-test.yml (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
cubxxw authored Dec 26, 2023
1 parent add0c63 commit 0865b3f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/scripts-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,15 @@ jobs:
sleep 30;
- name: start all services
run: |
sudo make init
sudo make start
sudo make init && \
sudo make start || \
(echo "An error occurred, printing logs:" && sudo cat ./logs/* 2>/dev/null)
shell: bash

- name: Check all services
run: |
sudo make check
sudo make check || \
(echo "An error occurred, printing logs:" && sudo cat ./logs/* 2>/dev/null)
shell: bash

- name: Stop chat
Expand Down

0 comments on commit 0865b3f

Please sign in to comment.