Skip to content

build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.9.0 #51

build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.9.0

build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.9.0 #51

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
UnitTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.18'
- name: Run coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)