Skip to content

Bump github.com/prometheus/client_golang from 1.16.0 to 1.23.2 #35

Bump github.com/prometheus/client_golang from 1.16.0 to 1.23.2

Bump github.com/prometheus/client_golang from 1.16.0 to 1.23.2 #35

Workflow file for this run

name: build + test + lint
on:
pull_request:
paths:
- "go.sum"
- "go.mod"
- "**.go"
- "Makefile"
- ".github/workflows/ci.yaml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.18'
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: make build
- run: make test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.18'
- uses: golangci/[email protected]
with:
version: v1.45.2