Skip to content

add connection management to the CLI to support testing, debugging, getting started, and infra as code #28

add connection management to the CLI to support testing, debugging, getting started, and infra as code

add connection management to the CLI to support testing, debugging, getting started, and infra as code #28

Workflow file for this run

name: Acceptance Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
env:
HOOKDECK_CLI_TESTING_API_KEY: ${{ secrets.HOOKDECK_CLI_TESTING_API_KEY }}
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.24.9"
- name: Run Go Acceptance Tests
run: go test ./test/acceptance/... -v -timeout 10m