Skip to content

Bump github.com/signalfx/golib/v3 from 3.3.46 to 3.3.52 #92

Bump github.com/signalfx/golib/v3 from 3.3.46 to 3.3.52

Bump github.com/signalfx/golib/v3 from 3.3.46 to 3.3.52 #92

Workflow file for this run

name: build-and-test
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Cache Go
id: go-cache
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: make gocov test