build(deps): bump github.com/prometheus/common from 0.46.0 to 0.47.0 #65
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
with: | |
version: latest | |
args: > | |
--enable | |
asasalint,bidichk,dupword,errchkjson,godot,gofumpt,gosec,gosimple,ineffassign,misspell,loggercheck,revive,unused | |
--disable | |
errcheck |