From 382d6a68e98245041088c1f5dac245ec4f53d040 Mon Sep 17 00:00:00 2001 From: Gareth Watts Date: Wed, 8 Jun 2022 08:37:47 -0500 Subject: [PATCH] Update action.yml --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index d8c617d..0a2ab93 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ name: 'Go Coverage' -description: 'Generates Go coverage reports' +description: 'Generates Go coverage reports without third party services' inputs: token: description: github token @@ -8,15 +8,15 @@ inputs: description: URL of final uploaded report. e.g. https://reports.example.com/{{ $github.sha }}/cover.html required: false working-directory: - description: 'working directory. defaults to project root' + description: 'Working directory. defaults to project root' required: false default: '' report-filename: - description: 'file or pathname for the resulting html coverage report' + description: 'File or pathname for the resulting html coverage report' required: false default: 'go-coverage.html' cover-mode: - description: 'parameter to pass to go tests -covermode argument. Either count, set or atomic' + description: 'Parameter to pass to go tests -covermode argument. Either count, set or atomic' default: 'count' test-args: description: 'Build arguments to pass to go test'