Skip to content

deps: bump github.com/prometheus/client_golang from 1.19.0 to 1.19.1 … #1078

deps: bump github.com/prometheus/client_golang from 1.19.0 to 1.19.1 …

deps: bump github.com/prometheus/client_golang from 1.19.0 to 1.19.1 … #1078

Workflow file for this run

name: Go
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
if: ${{ !startsWith(github.event.head_commit.message, 'docs:') }}
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.20
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Style
run: make style
- name: Vet
run: make vet
- name: Test
run: make test
- name: Build
run: make build