Bump actions/checkout from 4.1.2 to 4.1.3 (#437) #786
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: Test Coverage | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the main branch | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
cov: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/[email protected] | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.20.2 # The Go version to download (if necessary) and use. | |
- name: Get Coverage | |
run: | | |
go test ./... -timeout=30m -cover -coverprofile coverage.out | |
cat coverage.out | grep -v ".pb.go" > coverage2.out | |
cat coverage2.out | grep -v ".pb.gw.go" > coverage3.out | |
go tool cover -func coverage3.out | |
rm coverage2.out | |
rm coverage.out | |
- uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV }} | |