2021-06-29 18:27:50 +00:00
|
|
|
name: Unit Test Coverage
|
2021-07-23 14:29:00 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
2021-06-29 18:27:50 +00:00
|
|
|
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
|
2021-07-01 23:08:35 +00:00
|
|
|
with:
|
|
|
|
go-version: '1.16.5'
|
2021-06-29 18:27:50 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
- name: Run Unit Tests
|
|
|
|
run: |
|
2021-07-26 16:59:33 +00:00
|
|
|
go test -coverpkg=./... -coverprofile=coverage.out ./pkg/... -run Unit
|
2021-06-29 18:27:50 +00:00
|
|
|
go tool cover -func coverage.out
|
2021-07-01 23:08:35 +00:00
|
|
|
- name: On Failure, Launch Debug Session
|
|
|
|
if: ${{ failure() }}
|
|
|
|
uses: mxschmitt/action-tmate@v3
|
2021-07-26 16:59:33 +00:00
|
|
|
timeout-minutes: 5
|
2021-06-29 18:27:50 +00:00
|
|
|
- name: Upload Results To Codecov
|
|
|
|
uses: codecov/codecov-action@v1
|
|
|
|
with:
|
|
|
|
files: ./coverage.out
|
|
|
|
flags: unittests # optional
|
|
|
|
verbose: true # optional (default = false)
|