-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
507 additions
and
54 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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Change Log | ||
|
||
## [v20200412] | ||
|
||
- Leverages `with` keyword to configure the action | ||
- Adds parallel support | ||
- Adds webhook support | ||
- Increases test coverage to 100% | ||
|
||
|
||
## [v20200411] | ||
|
||
- Initial release |
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
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,5 +1,31 @@ | ||
name: 'Coveralls' | ||
description: 'Reports to coveralls.io' | ||
name: 'Coveralls Python' | ||
author: 'Andre Miras' | ||
description: 'Python coverage reports via coveralls.io' | ||
branding: | ||
color: 'green' | ||
icon: 'percent' | ||
inputs: | ||
github-token: | ||
description: 'The `GITHUB_TOKEN` or `COVERALLS_REPO_TOKEN`.' | ||
default: ${{ github.token }} | ||
parallel: | ||
description: 'Set to true if you are using parallel jobs, then use `parallel-finished: true` for the last action.' | ||
default: false | ||
parallel-finished: | ||
description: 'Set to true for the last action when using `parallel: true`.' | ||
default: false | ||
debug: | ||
description: 'Set to `true` to increase logger verbosity.' | ||
default: false | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
args: | ||
- --github-token | ||
- ${{ inputs.github-token }} | ||
- --parallel | ||
- ${{ inputs.parallel }} | ||
- --parallel-finished | ||
- ${{ inputs.parallel-finished }} | ||
- --debug | ||
- ${{ inputs.debug }} |
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
Oops, something went wrong.