Skip to content

Update module github.com/stretchr/testify to v1.9.0 #73

Update module github.com/stretchr/testify to v1.9.0

Update module github.com/stretchr/testify to v1.9.0 #73

Workflow file for this run

name: Check code coverage
on: [ push, pull_request ]
jobs:
codecov:
name: codecov
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: false
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Generate coverage report
run: |
go test `go list ./... | grep -v examples` -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage report
uses: codecov/codecov-action@v3.1.3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
flags: unittests