Skip to content

build(deps): bump github.com/prometheus/common from 0.63.0 to 0.64.0 … #629

build(deps): bump github.com/prometheus/common from 0.63.0 to 0.64.0 …

build(deps): bump github.com/prometheus/common from 0.63.0 to 0.64.0 … #629

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
lint-build-test:
name: Lint, Build, and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Setup go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # 5.5.0
with:
go-version-file: ./go.mod
- name: Run golangci-lint
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # v6.5.2
with:
version: v1.64.2
args: |
"./..." --timeout=7m
skip-cache: true
install-mode: binary
- name: Setup Mage
uses: magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b # v3
with:
install-only: true
- name: Build
run: |
mage -v build
- name: Install test dependencies
run: |
sudo apt update
sudo apt install -y gcc
- name: Test
run: |
CGO_ENABLED=1 mage -v testRace