Docker-Davinci-Resolve-Proj.../.github/workflows/stack-healthcheck.yml
Elliot Matson 83f2f61f06 test curl
2022-07-29 18:16:29 -05:00

22 lines
533 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 container
run: docker run --network container:resolve_pgadmin appropriate/curl --retry 10 --retry-delay 1 --retry-connrefused http://localhost/
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ failure() }}