From 4215ada0193cdece4393f1bec9740f29ea2b4be9 Mon Sep 17 00:00:00 2001 From: Rutuja Benke Date: Tue, 27 Jan 2026 10:42:27 +0530 Subject: [PATCH] Add CI workflow to validate and build Docker Compose services --- .github/workflows/ci-compose-build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci-compose-build.yml diff --git a/.github/workflows/ci-compose-build.yml b/.github/workflows/ci-compose-build.yml new file mode 100644 index 0000000000..7c336b91de --- /dev/null +++ b/.github/workflows/ci-compose-build.yml @@ -0,0 +1,19 @@ +name: CI - Docker Compose Build Validation + +on: + pull_request: + branches: [ main ] + +jobs: + compose-build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Validate Docker Compose configuration + run: docker compose config + + - name: Build all Docker Compose services + run: docker compose build