Unverified Commit 7242ce93 authored by Derek Nola's avatar Derek Nola Committed by GitHub

Redux: Add Unit Test Coverage to CI (#3524)

* Added Github action to run unit tests and connect to Codecov Signed-off-by: 's avatardereknola <derek.nola@suse.com>
parent 04398a25
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
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)
...@@ -21,6 +21,7 @@ echo "Did test-run-basics $?" ...@@ -21,6 +21,7 @@ echo "Did test-run-basics $?"
. ./scripts/test-run-compat . ./scripts/test-run-compat
echo "Did test-run-compat $?" echo "Did test-run-compat $?"
# --- # ---
[ "$ARCH" != 'amd64' ] && \ [ "$ARCH" != 'amd64' ] && \
...@@ -38,4 +39,6 @@ echo "Did test-run-sonobuoy $?" ...@@ -38,4 +39,6 @@ echo "Did test-run-sonobuoy $?"
test-run-sonobuoy mysql test-run-sonobuoy mysql
test-run-sonobuoy postgres test-run-sonobuoy postgres
. ./scripts/test-unit
exit 0 exit 0
#!/bin/bash
go test -cover -v ./pkg/...
...@@ -32,5 +32,3 @@ if [ -n "$DIRTY" ]; then ...@@ -32,5 +32,3 @@ if [ -n "$DIRTY" ]; then
git diff git diff
exit 1 exit 1
fi fi
"${GO}" test -v ./pkg/...
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment