From 817cc630d5aed4a1f70d05277593e556838f3ed4 Mon Sep 17 00:00:00 2001 From: JamBalaya56562 Date: Sat, 6 Jun 2026 06:40:15 +0900 Subject: [PATCH] ci(examples): cover go-http-zip and standardize template filenames go-http-zip used template.yml, which the validate job's find (template.yaml) never matched, so the example was untested. Rename the two stragglers (go-http-zip, sinatra) to the conventional template.yaml -- SAM auto-detects either name, so there is no functional change -- and add go-http-zip to the test-zip matrix. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/examples.yaml | 1 + examples/go-http-zip/{template.yml => template.yaml} | 0 examples/sinatra/{template.yml => template.yaml} | 0 3 files changed, 1 insertion(+) rename examples/go-http-zip/{template.yml => template.yaml} (100%) rename examples/sinatra/{template.yml => template.yaml} (100%) diff --git a/.github/workflows/examples.yaml b/.github/workflows/examples.yaml index 50ee0fab..ad5b5705 100644 --- a/.github/workflows/examples.yaml +++ b/.github/workflows/examples.yaml @@ -190,6 +190,7 @@ jobs: - { name: fasthtml-zip, path: /, expect_body: "Hello World", port: "8000" } - { name: flask-zip, path: /, expect_body: "message", port: "8000" } - { name: gin-zip, path: /, expect_body: "message", port: "8000" } + - { name: go-http-zip, path: /, expect_body: "Hello, Website!", port: "3000" } - { name: remix-zip, path: /, expect_body: "Welcome to", port: "8000" } - { name: springboot-zip, path: /v1/, expect_body: "Hello, world!", port: "8000" } steps: diff --git a/examples/go-http-zip/template.yml b/examples/go-http-zip/template.yaml similarity index 100% rename from examples/go-http-zip/template.yml rename to examples/go-http-zip/template.yaml diff --git a/examples/sinatra/template.yml b/examples/sinatra/template.yaml similarity index 100% rename from examples/sinatra/template.yml rename to examples/sinatra/template.yaml