Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
N3cr0s1s committed Dec 5, 2024
1 parent ac8bbc9 commit 22ed2a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
sudo apt-get update
sudo apt-get install -y python3-pip
pip3 install docker-compose
docker-compose -f /app/test/docker-compose.yml up --build --abort-on-container-exit
docker-compose -f ./test/docker-compose.yml up --build --abort-on-container-exit
# Check test results
- name: Check test results
run: |
docker-compose down -f /app/test/docker-compose.yml
docker-compose -f ./test/docker-compose.yml down
if [ $(docker-compose ps -q test-runner | xargs docker inspect -f '{{.State.ExitCode}}') -ne 0 ]; then
echo "Tests failed!"
exit 1
Expand Down

0 comments on commit 22ed2a2

Please sign in to comment.