Add Azure Functions (Go) template#65
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a new Azure Functions (Go) Dev Container Template to the template collection, with CI/test wiring and README visibility alongside the existing language-specific Azure Functions templates.
Changes:
- Adds the
azure-functions-gotemplate files, including dev container configuration, Docker Compose with Azurite, and template metadata/options. - Adds CI path filtering and a smoke test script for the new template.
- Updates README to list Azure Functions (Go) and supported Go versions.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
src/azure-functions-go/.devcontainer/devcontainer.json |
Defines the Go/Azure Functions dev container features and VS Code customizations. |
src/azure-functions-go/.devcontainer/Dockerfile |
Uses the shared base dev container image. |
src/azure-functions-go/.devcontainer/docker-compose.yml |
Adds the app and Azurite services. |
src/azure-functions-go/devcontainer-template.json |
Adds template metadata and configurable Go/Core Tools versions. |
src/azure-functions-go/.github/dependabot.yml |
Enables Dependabot updates for the template. |
test/azure-functions-go/test.sh |
Adds smoke checks for Go and Azure Functions Core Tools. |
.github/workflows/test-pr.yml |
Includes the new template in PR change detection. |
README.md |
Lists the new Go Azure Functions template. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new Dev Container Template for Azure Functions using Go. It adds all necessary configuration files, documentation updates, and testing scripts to support Go-based Azure Functions development in a consistent containerized environment.
New Azure Functions (Go) Dev Container Template:
src/azure-functions-gowith configuration files for Dev Containers, includingDockerfile,devcontainer.json,docker-compose.yml, anddevcontainer-template.json, enabling Go development for Azure Functions with customizable Go and Azure Functions CLI versions. [1] [2] [3] [4]Documentation and Workflow Updates:
README.mdto include the new Azure Functions (Go) template with supported Go versions..github/workflows/test-pr.ymlto add a filter for the newazure-functions-godirectory, ensuring CI coverage.Dependency Management and Testing:
test/azure-functions-go/test.shto validate the Go template setup.