Skip to content

build(deps): bump github.com/prometheus/client_golang from 1.19.1 to 1.20.0 #24

build(deps): bump github.com/prometheus/client_golang from 1.19.1 to 1.20.0

build(deps): bump github.com/prometheus/client_golang from 1.19.1 to 1.20.0 #24

Workflow file for this run

---
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
with:
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22.5"
- name: Install Linters
run: |
go install github.com/mgechev/revive@latest
go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Lint - golint
run: revive ./...
- name: Lint - staticcheck
run: GOOS=linux staticcheck ./...
- name: Build
run: go build ./...
- name: Test
run: go test ./...