Skip to content

feat: add terraform module for webhook gateway #89

feat: add terraform module for webhook gateway

feat: add terraform module for webhook gateway #89

Workflow file for this run

name: Tests
on:
pull_request:
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run Unit and Lint Tests
runs-on: [self-hosted-linux-amd64-noble-edge]
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.25
- name: Ensure No Formatting Changes
run: |
go fmt ./...
git diff --exit-code
- name: Build and Test
run: |
go test -v -cover -race ./...