forked from Mellanox/network-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: amaslennikov <[email protected]>
- Loading branch information
1 parent
11f0825
commit 1658295
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Test Coverage | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
coverage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: '^1.21' | ||
|
||
- name: Run tests and collect coverage | ||
run: | | ||
make test-coverage | ||
- name: Generate coverage report | ||
run: | | ||
go tool cover -func=network-operator.cover | ||
- name: Post coverage comment to PR | ||
uses: machine-learning-apps/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
path: coverage.txt | ||
regex: '^total:\\s*\\(statements\\)\\s*([0-9\\.]+)%' | ||
message: "Code coverage on this PR is **${{ match }}%**. Please ensure this meets the project standards." |