diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..c336dcf --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build and Test + +on: + workflow_dispatch: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - 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 diff --git a/go.mod b/go.mod index 3194973..cc73123 100644 --- a/go.mod +++ b/go.mod @@ -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