Skip to content

Bump github.com/prometheus/client_model from 0.6.0 to 0.6.1 (#51) #146

Bump github.com/prometheus/client_model from 0.6.0 to 0.6.1 (#51)

Bump github.com/prometheus/client_model from 0.6.0 to 0.6.1 (#51) #146

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...