grpc: Wait until resources finish cleaning up in Stop() and GracefulS… #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: codecov | |
on: [push, pull_request] | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install checkout | |
uses: actions/checkout@v4 | |
- name: Install checkout | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "stable" | |
- name: Run coverage | |
run: go test -coverprofile=coverage.out -coverpkg=./... ./... | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |