Skip to content

Bump github.com/prometheus/common from 0.39.0 to 0.45.0 #71

Bump github.com/prometheus/common from 0.39.0 to 0.45.0

Bump github.com/prometheus/common from 0.39.0 to 0.45.0 #71

Workflow file for this run

name: "build-and-test"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-and-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Go mod download
run: go mod download
- uses: Jerome1337/gofmt-action@v1.0.4
with:
gofmt-path: '.'
gofmt-flags: '-l -d'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
skip-pkg-cache: true
- name: Test
run: go test ./...
- name: Go build
run: go build .