Skip to content

Bump github.com/stretchr/testify from 1.8.0 to 1.8.2 #148

Bump github.com/stretchr/testify from 1.8.0 to 1.8.2

Bump github.com/stretchr/testify from 1.8.0 to 1.8.2 #148

Workflow file for this run

name: Building
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.19
id: go
- name: Set up gotestsum
uses: autero1/action-gotestsum@v1.0.0
with:
gotestsum_version: 1.7.0
- name: Checkout code
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: gotestsum -- -race ./...