Skip to content

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

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

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

Workflow file for this run

name: Unit Tests Coverage
on:
pull_request:
push:
jobs:
tests-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup GO env
uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: true
- name: Run Unit Tests with Coverage
run: make test-coverage
- name: Upload Coverage to CodeCov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: ./coverage.txt
verbose: true