Skip to content

Commit

Permalink
WIP - test connectivity in Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasgarciaisaia committed Mar 6, 2024
1 parent 5ec83d1 commit 9e1c9dc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Test internal connectivity
run: |
docker compose up --wait db
PGPASSWORD="${POSTGRES_PASSWORD}" psql --host db --username planwise --list || true
sleep 20
PGPASSWORD="${POSTGRES_PASSWORD}" psql --host db --username planwise --list || true
exit 1
- name: Set environment up
run: |
docker compose pull
Expand Down

0 comments on commit 9e1c9dc

Please sign in to comment.