# Serverless Workers - Go SDK

> Write Temporal Workers that run on serverless compute using the Go SDK.

> **Public Preview**
> AWS Lambda support is in Public Preview. GCP Cloud Run support is in Pre-release, and its APIs may change in
> backwards-incompatible ways. To request Cloud Run access, create a [support ticket](/cloud/support#support-ticket) or
> contact your account team, and [sign up for updates](https://temporal.io/pages/serverless-workers-updates) to hear
> when Cloud Run reaches Public Preview.

Serverless Workers run on ephemeral, on-demand compute rather than long-lived processes.
Temporal invokes the Worker when Tasks arrive, and the Worker shuts down when the work is done.

For a general overview of how Serverless Workers work, see [Serverless Workers](/serverless-workers).
For the end-to-end deployment guide, see [Deploy a Serverless Worker](/production-deployment/worker-deployments/serverless-workers).

## Supported providers

- [**AWS Lambda**](/develop/go/workers/serverless-workers/aws-lambda) - Use the `lambdaworker` package to run a Worker as a Lambda function. Covers setup, configuration, Lambda-tuned defaults, observability, and the invocation lifecycle.
- [**GCP Cloud Run**](/develop/go/workers/serverless-workers/cloud-run) - Run a standard Worker on a Cloud Run worker pool. Covers the versioned Worker setup, connection configuration, and handling scale-in.
