From e5e38e8aee01ef832c01352e13afa128ae6bc26e Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 30 Jan 2026 23:42:43 +0000 Subject: [PATCH] Fix CI Actions by removing missing serverless-lambda example - Removed `serverless-lambda` from `.github/workflows/ci.yml` check and fmt jobs. - Removed `serverless-lambda` references from `README.md`. - Verified that `serverless-lambda` directory does not exist in the repository. Co-authored-by: Tuntii <121901995+Tuntii@users.noreply.github.com> --- .github/workflows/ci.yml | 8 -------- README.md | 3 --- 2 files changed, 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 223854f..f87415b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,13 +90,6 @@ jobs: exit 1 fi - # Serverless Lambda uses different runtime, check separately - - name: Check serverless-lambda - run: | - echo "📦 Checking: serverless-lambda (AWS Lambda runtime)" - cd serverless-lambda && cargo check --quiet - echo "✅ serverless-lambda: OK" - fmt: name: Format Check runs-on: ubuntu-latest @@ -126,7 +119,6 @@ jobs: "middleware-chain" "phase11-demo" "rate-limit-demo" - "serverless-lambda" "templates" "toon-api" "websocket" diff --git a/README.md b/README.md index 5736290..47e56df 100644 --- a/README.md +++ b/README.md @@ -110,9 +110,6 @@ This repository contains **18 production-ready examples** organized by category: | [microservices](microservices/) | ⭐⭐⭐⭐ | API Gateway pattern | Service-to-service communication, routing | | [microservices-advanced](microservices-advanced/) | ⭐⭐⭐⭐ | Service discovery | Registry, heartbeat, Docker Compose | | [phase11-demo](phase11-demo/) | ⭐⭐⭐⭐ | Advanced middleware | Guards, circuit breaker, timeout, logging | -| [serverless-lambda](serverless-lambda/) | ⭐⭐⭐ | AWS Lambda deployment | SAM template, cold start optimization | - -> ⚠️ **Note**: `serverless-lambda` uses AWS Lambda HTTP runtime instead of RustAPI for serverless deployment patterns. ---