forked from k3s-io/k3s
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redux: Add Unit Test Coverage to CI (k3s-io#3524)
* Added Github action to run unit tests and connect to Codecov Signed-off-by: dereknola <[email protected]>
- Loading branch information
Showing
5 changed files
with
41 additions
and
2 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,9 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: false # disable the default status that measures entire project | ||
pkg: # declare a new status context "pkg" | ||
paths: | ||
- pkg/* # only include coverage in "pkg/" folder | ||
informational: true # Always pass check | ||
patch: off # disable the commit only checks |
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,27 @@ | ||
name: Unit Test Coverage | ||
on: [push, pull_request] | ||
jobs: | ||
test: | ||
name: Unit Tests | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-18.04, ubuntu-20.04] | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
- name: Run Unit Tests | ||
run: | | ||
go test ./pkg/... -coverprofile coverage.out | ||
go tool cover -func coverage.out | ||
- name: Upload Results To Codecov | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
files: ./coverage.out | ||
flags: unittests # optional | ||
verbose: true # optional (default = false) |
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
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,2 @@ | ||
#!/bin/bash | ||
go test -cover -v ./pkg/... |
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 |
---|---|---|
|
@@ -32,5 +32,3 @@ if [ -n "$DIRTY" ]; then | |
git diff | ||
exit 1 | ||
fi | ||
|
||
"${GO}" test -v ./pkg/... |