File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -232,6 +232,7 @@ jobs:
232232 if : matrix.unit_type == 'unit-cover'
233233 with :
234234 path-to-profile : coverage.txt
235+ flag-name : ' unit'
235236 parallel : true
236237
237238 # #######################
@@ -289,3 +290,13 @@ jobs:
289290 name : logs-itest-postgres
290291 path : logs-itest-postgres.zip
291292 retention-days : 5
293+
294+ # Notify about the completion of all coverage collecting jobs.
295+ finish :
296+ if : ${{ always() }}
297+ needs : [unit-test]
298+ runs-on : ubuntu-latest
299+ steps :
300+ - uses : shogo82148/actions-goveralls@v1
301+ with :
302+ parallel-finished : true
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ RPC_TAGS = autopilotrpc chainrpc invoicesrpc peersrpc routerrpc signrpc verrpc w
44LOG_TAGS =
55TEST_FLAGS =
66ITEST_FLAGS = -logoutput
7+ COVER_PKG = $$(go list -deps -tags="$(DEV_TAGS ) " ./... | grep '$(PKG ) ' | grep -v taprpc )
78COVER_HTML = go tool cover -html=coverage.txt -o coverage.html
89POSTGRES_START_DELAY = 5
910
You can’t perform that action at this time.
0 commit comments