Skip to content

feat: add prometheus monitoring stack and grafana dashboard for k8s #793

feat: add prometheus monitoring stack and grafana dashboard for k8s

feat: add prometheus monitoring stack and grafana dashboard for k8s #793

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- name: Download Go modules
run: go mod download
- name: Generate code (swagger docs + client)
run: |
make generate
- name: Build
run: make build
- name: Test
run: make test