-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created workflow to check if containers are working
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Deployment Check | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
jobs: | ||
docker-compose: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SECRET_KEY: "foo" | ||
DJANGO_SUPERUSER_USERNAME: "bar" | ||
DJANGO_SUPERUSER_EMAIL: "[email protected]" | ||
DJANGO_SUPERUSER_PASSWORD: "foobar" | ||
POSTGRES_DB: "foodb" | ||
POSTGRES_USER: "bar" | ||
POSTGRES_PASSWORD: "foobar" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Build and up | ||
run: docker compose up --build | ||
- name: Health-checks | ||
run: | | ||
services=$(docker-compose ps --services) | ||
for service in $services; do | ||
status=$(docker inspect -f '{{.State.Health.Status}}' $service) | ||
if [ "$status" != "healthy" ]; then | ||
echo "$service is not healthy" | ||
exit 1 | ||
fi | ||
done |