Skip to content

build(deps): bump github.com/prometheus/exporter-toolkit from 0.11.0 to 0.12.0 #106

build(deps): bump github.com/prometheus/exporter-toolkit from 0.11.0 to 0.12.0

build(deps): bump github.com/prometheus/exporter-toolkit from 0.11.0 to 0.12.0 #106

Workflow file for this run

name: test
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: WillAbides/[email protected]
with:
go-version: stable
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: go mod download -x
- run: go test -v ./... -race -bench=. -benchmem -cover -coverprofile cover.out 2>&1 | tee test.out
- run: go tool cover -func cover.out
lint:
runs-on: ubuntu-latest
steps:
- uses: WillAbides/[email protected]
with:
go-version: stable
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: go mod download -x
- run: go mod tidy && git diff --exit-code go.mod go.sum
- run: go vet ./...
- uses: dominikh/[email protected]
with:
install-go: false
- uses: golangci/golangci-lint-action@v6
with:
version: latest
args: >
--enable
asasalint,bidichk,dupword,errchkjson,godot,gofumpt,gosec,gosimple,ineffassign,misspell,loggercheck,revive,unused
--disable
errcheck