Skip to content

chore(deps): bump github.com/prometheus/client_golang from 1.20.3 to 1.20.5 #96

chore(deps): bump github.com/prometheus/client_golang from 1.20.3 to 1.20.5

chore(deps): bump github.com/prometheus/client_golang from 1.20.3 to 1.20.5 #96

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: tests
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go test ./...
build:
name: build
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Build
run: go build -o . ./cmd/...