From 67aa1a94f6a18f4de2163f4de669954ae30a498a Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Sat, 14 Sep 2019 21:03:29 -0700 Subject: [PATCH] Update action.yml --- action.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index 5cfdde4..828ad91 100644 --- a/action.yml +++ b/action.yml @@ -1,10 +1,15 @@ -name: 'Your name here' -description: 'Provide a description here' -author: 'Your name or organization here' +name: 'Run Julia package tests' +description: 'Run the tests in a Julia package' +author: 'David Anthoff' inputs: - myInput: # change this - description: 'input description here' - default: 'default value if applicable' + codecov: + description: 'Coverage results upload to codecov.' + required: false + default: 'true' + coveralls: + description: 'Coverage results upload to coveralls.' + required: false + default: 'true' runs: using: 'node12' main: 'lib/main.js'