Skip to content

Commit

Permalink
Debugging unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sahalali committed Sep 30, 2024
1 parent 41253fd commit de14b94
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/unit-test-on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ jobs:
- name: Run GraphDB
run: docker compose -f "graph-db/docker-compose.yml" up -d --build

- name: Wait for GraphDB to be ready
run: |
until curl -s http://127.0.0.1:7200/rest/repositories > /dev/null; do
echo "Waiting for GraphDB to start..."
sleep 5
done
- name: Import repository configuration
run: |
curl 'http://127.0.0.1:7200/rest/repositories' \
Expand Down

0 comments on commit de14b94

Please sign in to comment.