Skip to content

Upgrade prometheus common to v0.67.5 #212

Upgrade prometheus common to v0.67.5

Upgrade prometheus common to v0.67.5 #212

Workflow file for this run

name: go
on:
push:
branches:
- main
tags:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
name: Linters (Static Analysis) for Go
steps:
- name: Checkout code into the Go module directory.
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: 1.25.x
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Linting & vetting.
env:
GOBIN: /tmp/.bin
run: make lint
tests:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
go: ["1.24.x", "1.25.x"]
platform: [ubuntu-latest, macos-15-intel]
name: Unit tests on Go ${{ matrix.go }} ${{ matrix.platform }}
steps:
- name: Checkout code into the Go module directory.
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: ${{ matrix.go }}
- name: Setup Docker on macOS
if: runner.os == 'macOS'
uses: douglascamata/setup-docker-macos-action@v1
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Run unit tests.
env:
GOBIN: /tmp/.bin
run: make test