expose alertmanager endpoint for api tenancy as param (#584) #1584
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: Vendor | |
run: make vendor_jsonnet | |
- name: Build | |
run: make grafana manifests prometheusrules | |
- name: Format | |
run: make format | |
- name: Lint | |
run: make lint | |
- name: Validate | |
run: make validate | |
- name: Diff | |
run: git diff --exit-code |