Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build and Test

on:
workflow_dispatch:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
Copy link

Copilot AI May 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a caching step for Go module dependencies using actions/cache to speed up subsequent builds.

Copilot uses AI. Check for mistakes.
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.24.3
- name: Build and Test
run: ./build.sh
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/patterninc/heimdall

go 1.23.7
go 1.24.3

require (
github.com/aws/aws-sdk-go-v2 v1.36.3
Expand Down