Skip to content

build(deps): bump github.com/prometheus/client_golang from 1.20.2 to 1.20.3 #131

build(deps): bump github.com/prometheus/client_golang from 1.20.2 to 1.20.3

build(deps): bump github.com/prometheus/client_golang from 1.20.2 to 1.20.3 #131

Workflow file for this run

name: Test
on:
pull_request: {}
push:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go 1.20
uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sudo sh -s -- -b /usr/local/bin v1.60.3
- name: Lint
run: make lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go 1.20
uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Test
run: make test