Skip to content

Use the External DNS webhook server implementation #9

Use the External DNS webhook server implementation

Use the External DNS webhook server implementation #9

Workflow file for this run

name: Compile & Test
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.23.1'
- name: Build
run: go build ./...
- name: Test
run: go test -v ./... -vet=all