Bump github.com/prometheus/client_golang from 1.16.0 to 1.17.0 #268
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
on: [ push, pull_request ] | |
name: Continuous Integration | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [ 1.20.x ] | |
os: [ ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Install | |
run: | | |
go mod download | |
- name: Packr | |
run: | | |
go install github.com/gobuffalo/packr/packr@latest | |
packr clean | |
packr -z -i fallback | |
- name: Test | |
run: | | |
mkdir -p var | |
go test -v -race -covermode atomic "-coverprofile=var/profile.cov" ./... |