fix: Generate only a single CDS config update per render round #171
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
workflow_call: | |
workflow_dispatch: | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
tags-ignore: | |
- '*' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
unit-tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Golang Environment | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: Run Tests | |
run: make test |