2020-06-19 15:07:58 -04:00
|
|
|
name: Coverage
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-11-23 07:51:58 -05:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- v*
|
2020-08-24 09:22:27 -04:00
|
|
|
paths:
|
|
|
|
- "**/*.go"
|
2020-06-19 15:07:58 -04:00
|
|
|
|
|
|
|
jobs:
|
2020-08-24 04:09:51 -04:00
|
|
|
coverage:
|
2020-06-19 15:07:58 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up Go 1.x
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2020-09-09 06:19:49 -04:00
|
|
|
go-version: ^1.15
|
2020-06-19 15:07:58 -04:00
|
|
|
|
2020-08-30 11:55:00 -04:00
|
|
|
- name: Checkout codebase
|
2020-06-19 15:07:58 -04:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Get dependencies
|
2020-12-02 08:57:31 -05:00
|
|
|
run: go get -v -t -d ./...
|
2020-06-19 15:07:58 -04:00
|
|
|
|
2020-08-24 04:09:51 -04:00
|
|
|
- name: Run coverage
|
2020-12-02 08:57:31 -05:00
|
|
|
run: |
|
|
|
|
chmod u+x ./testing/coverage/coverall.sh
|
|
|
|
./testing/coverage/coverall.sh
|
2020-06-19 15:07:58 -04:00
|
|
|
|
|
|
|
- name: Upload coverage to Codecov
|
|
|
|
uses: codecov/codecov-action@v1
|
|
|
|
with:
|
|
|
|
file: ./coverage.txt
|
|
|
|
fail_ci_if_error: true
|