add dns record orphan alert #19
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: Alerts Promql tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- examples/alerts/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'examples/alerts/**' | |
jobs: | |
promql-tests: | |
name: Promql Unit tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Set up Go 1.22.x | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22.x | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Run Promql tests | |
run: | | |
make test-alerts |