Skip to content

Bump github.com/prometheus/client_golang in the gomod group #96

Bump github.com/prometheus/client_golang in the gomod group

Bump github.com/prometheus/client_golang in the gomod group #96

name: Continuous Integration
on:
push:
jobs:
go:
name: Go
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
- name: Download Dependencies
run: |
go mod download
- name: Vet
run: |
go vet ./...
- name: Test
run: |
go test ./...
- name: Build
run: |
make build