Skip to content

chore(deps): update module github.com/prometheus/client_golang to v1.21.0 - autoclosed #89

chore(deps): update module github.com/prometheus/client_golang to v1.21.0 - autoclosed

chore(deps): update module github.com/prometheus/client_golang to v1.21.0 - autoclosed #89

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
pull_request:
branches: [ "master" ]
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: fmt
run: make fmt
- name: vet
run: make vet
- name: lint
run: make lint
- name: Test
run: make test