From 6a0ea3414e55796857a93194561b787b1086c822 Mon Sep 17 00:00:00 2001 From: Walmir Silva Date: Wed, 19 Nov 2025 18:32:26 -0300 Subject: [PATCH] ci: remove root endpoint test from integration workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove curl test for http://localhost:8080 as the root endpoint is application-specific and not provided by the base stack. The /health endpoint test is kept as it's essential for monitoring the stack's operational status in CI/CD pipelines. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index edf6573..19eac4f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -89,7 +89,6 @@ jobs: run: | make run sleep 10 - curl -f http://localhost:8080 curl -f http://localhost:8080/health make stop