-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add working-directory option & build command (#27)
* add workingDirectory option * add build step
- Loading branch information
Showing
5 changed files
with
65 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
name: 'Golang Test Annotations' | ||
description: 'Given a test output of go test, the failed tests will be annotated.' | ||
name: "Golang Test Annotations" | ||
description: "Given a test output of go test, the failed tests will be annotated." | ||
inputs: | ||
test-results: # Path of the test results | ||
description: 'The path of the go test results' | ||
test-results: # Path of the test results | ||
description: "The path of the go test results" | ||
required: true | ||
default: 'test.json' | ||
default: "test.json" | ||
package-name: | ||
required: false | ||
description: 'Package name override' | ||
description: "Package name override" | ||
default: | ||
working-directory: | ||
description: "The path of the go module" | ||
required: false | ||
default: | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
using: "node16" | ||
main: "dist/index.js" | ||
branding: | ||
icon: "check" | ||
color: "green" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters