Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

fix(deps): update module github.com/dnaeon/go-vcr to v3 #508

fix(deps): update module github.com/dnaeon/go-vcr to v3

fix(deps): update module github.com/dnaeon/go-vcr to v3 #508

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.16.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@v3
- name: Lint
run: make lint BUILD=local
- name: Build
run: make build BUILD=local
- name: Test
run: make test BUILD=local