Skip to content

build(deps): update module github.com/prometheus/client_golang to v1.… #312

build(deps): update module github.com/prometheus/client_golang to v1.…

build(deps): update module github.com/prometheus/client_golang to v1.… #312

Workflow file for this run

name: test
on:
push:
branches-ignore:
- renovate/**
pull_request:
branches:
- master
jobs:
docker:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Go Build Cache (build)
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg
key: go-cache-119-${{ hashFiles('**/go.sum') }}-test
restore-keys: |
go-cache-119-${{ hashFiles('**/go.sum') }}-
- run: go test ./...