Skip to content

chore(deps): bump github.com/prometheus/prometheus from 0.52.2-0.20240614130246-4c1e71fa0b3d to 0.302.0-rc.1 #54

chore(deps): bump github.com/prometheus/prometheus from 0.52.2-0.20240614130246-4c1e71fa0b3d to 0.302.0-rc.1

chore(deps): bump github.com/prometheus/prometheus from 0.52.2-0.20240614130246-4c1e71fa0b3d to 0.302.0-rc.1 #54

Workflow file for this run

name: Check build
on:
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
goos: [ linux, darwin ]
goarch: [ amd64, arm64 ]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: |
make build GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }}