Skip to content

Bump github.com/prometheus/prometheus from 0.54.1 to 0.55.0 #625

Bump github.com/prometheus/prometheus from 0.54.1 to 0.55.0

Bump github.com/prometheus/prometheus from 0.54.1 to 0.55.0 #625

Workflow file for this run

name: Go Benchmark
on:
push:
paths-ignore:
- 'docs/**'
- 'README.md'
branches:
- main
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
branches:
- main
permissions:
contents: read
jobs:
dev:
strategy:
matrix:
os-version: [ 'ubuntu-latest' ]
go-version: [ '1.21', '1.22', '1.23' ]
runs-on: ${{ matrix.os-version }}
steps:
- uses: actions/checkout@v4
- name: Configure environment to avoid toolchain installs
shell: bash
run: echo "GOTOOLCHAIN=local" >> "$GITHUB_ENV"
- uses: actions/setup-go@v5
with:
go-version: "${{ matrix.go-version }}"
- name: Show Go version
run: |
go version
- name: Bench dnsutils
run: |
cd dnsutils/
go test -benchmem -run=^$ -bench=.
- name: Bench transformers
run: |
cd transformers/
go test -benchmem -run=^$ -bench=^BenchmarkUserPrivacy.*\|BenchmarkTransforms.*\|BenchmarkNormalize.*$