Skip to content

Clean old files

Clean old files #3

Workflow file for this run

name: Docker
on:
push:
pull_request:
permissions:
contents: read
jobs:
integration_deployment:
name: Check Docker
runs-on: ubuntu-latest
steps:
- name: Checkout the repository 🎁
uses: actions/checkout@v3
- name: Run with Docker
run: |
docker-compose -f docker-compose.yml up -d --build
bash -c 'while [[ "$(curl -L -s -o /dev/null -w %{http_code} http://127.0.0.1/healthcheck)" != "200" ]]; do sleep 5; done'