Skip to content

Commit

Permalink
chore: fix test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Spotika committed Aug 3, 2024
1 parent 4fc33bf commit 0c42e5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
uses: actions/checkout@v4

- name: Set up Docker Compose
run: apt install docker-compose
run: sudo apt install docker-compose

- name: Build and run Docker Compose
run: |
docker-compose up --build -d test
docker-compose logs -f test > test_logs.txt
sudo docker-compose up --build -d test
sudo docker-compose logs -f test > test_logs.txt
continue-on-error: true

- name: Check test results
Expand Down

0 comments on commit 0c42e5c

Please sign in to comment.