Skip to content

fix(deps): update module github.com/prometheus/client_golang to v1.20.3 #999

fix(deps): update module github.com/prometheus/client_golang to v1.20.3

fix(deps): update module github.com/prometheus/client_golang to v1.20.3 #999

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
name: CI tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- name: Run license check
run: make check-license
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '${{ env.golang-version }}'
- name: Run code format check
run: make format
- name: Run unit tests
run: make test
- name: Run e2e tests
run: make test-e2e