Skip to content

Adds ComparisonDelta prop to MetricAlert (#93) #213

Adds ComparisonDelta prop to MetricAlert (#93)

Adds ComparisonDelta prop to MetricAlert (#93) #213

Workflow file for this run

name: Go
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- "1.19"
- "1.20"
- "1.21"
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: make test