Skip to content

Bump github.com/prometheus/client_golang from 1.1.0 to 1.11.1 #36

Bump github.com/prometheus/client_golang from 1.1.0 to 1.11.1

Bump github.com/prometheus/client_golang from 1.1.0 to 1.11.1 #36

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
# strategy:
# matrix:
# go-version: [1.13.x]
# platform: [, macos-latest, windows-latest]
# runs-on: ${{ matrix.platform }}
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.16
uses: actions/setup-go@v2
with:
go-version: 1.16
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: make build
- name: Test
run: make test
# - name: Coverage
# uses: codecov/codecov-action@v1
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: ./coverage.txt
# flags: unittests
# name: codecov-coverage
# yml: ./codecov.yml
# fail_ci_if_error: true