Skip to content

Added Flush() to http event #21

Added Flush() to http event

Added Flush() to http event #21

Workflow file for this run

name: Go Coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.20.x
- uses: actions/checkout@master
- run: go test -v ./... -coverprofile cover.out -coverpkg ./...
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
flags: unittests
fail_ci_if_error: true
verbose: true
files: ./cover.out