Skip to content

Commit

Permalink
fix: use smarter condition checks
Browse files Browse the repository at this point in the history
  • Loading branch information
superlinkx committed Jan 24, 2024
1 parent 0b0c3aa commit 99305c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ jobs:
python packages/python/beagle/main.py test -avi
- name: Neo4j Debug Logs
if: always()
if: failure()
run: |
docker-compose -f docker-compose.testing.yml exec -T testgraph cat /logs/debug.log
- name: Postgres Debug Logs
if: always()
if: failure()
run: |
docker-compose -f docker-compose.testing.yml logs testdb
- name: Stop and Remove Containers
if: always()
if: ${{ ! cancelled() }}
run: |
docker-compose -f docker-compose.testing.yml down

0 comments on commit 99305c6

Please sign in to comment.