Skip to content

build(deps): bump github.com/stretchr/testify from 1.8.1 to 1.8.3 #350

build(deps): bump github.com/stretchr/testify from 1.8.1 to 1.8.3

build(deps): bump github.com/stretchr/testify from 1.8.1 to 1.8.3 #350

Workflow file for this run

name: test-short
on:
push:
pull_request:
jobs:
test-short:
strategy:
matrix:
go-version:
- 1.18.x
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: checkout
uses: actions/checkout@v2
- name: cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: test-short
run: make test-short