Skip to content
This repository was archived by the owner on Jun 25, 2026. It is now read-only.

fix(deploy): restore resilient health retries in blue/green cutover #15

fix(deploy): restore resilient health retries in blue/green cutover

fix(deploy): restore resilient health retries in blue/green cutover #15

Workflow file for this run

name: Test
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- main
workflow_dispatch:
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
go-test:
name: Go test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Run codegen and tests
run: make test
- name: Verify generated files are committed
run: git diff --exit-code