Skip to content

build(deps): bump github.com/prometheus/client_golang from 1.18.0 to 1.19.1 #935

build(deps): bump github.com/prometheus/client_golang from 1.18.0 to 1.19.1

build(deps): bump github.com/prometheus/client_golang from 1.18.0 to 1.19.1 #935

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "Makefile"
- ".github/workflows/test.yaml"
pull_request:
types: [opened, reopened, synchronize]
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "Makefile"
- ".github/workflows/test.yaml"
jobs:
test:
name: Unit Testing
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Setup Go Environment
uses: actions/setup-go@v5
with:
go-version-file: go.mod
id: go
- name: Go Get dependencies
run: go get -v -t -d ./...
- name: Go Test
run: make test TEST_FLAGS="-coverprofile=coverage.txt -covermode=atomic"
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
file: ./coverage.txt