19 lines
412 B
YAML
19 lines
412 B
YAML
---
|
|
name: Stack Healthcheck
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
name: Test Stack
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Deploy the stack
|
|
run: docker-compose up -d
|
|
|
|
- name: Test PGAdmin
|
|
run: docker run --network container:webapp-frontend appropriate/curl -s --retry 10 --retry-connrefused http://localhost:3001/
|