Skip to content

breaking: refactor from service-based advertising to prefix-based (#54) #158

breaking: refactor from service-based advertising to prefix-based (#54)

breaking: refactor from service-based advertising to prefix-based (#54) #158

Workflow file for this run

name: Go Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.25.4'
- name: Install Dependencies
run: go install
- name: Build
run: go build
- name: Run unit tests with coverage
run: bash unit-test-coverage.sh
- name: Run integration tests
run: go test -v -tags=integration ./...
- name: Run smoke tests
run: bash smoke/smoke-test.sh