Skip to content

Commit

Permalink
bump up to v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed Sep 21, 2021
1 parent bfd7427 commit 3dfb3bd
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 3 deletions.
Binary file modified bin/goveralls_darwin_amd64
Binary file not shown.
Binary file modified bin/goveralls_linux_amd64
Binary file not shown.
Binary file modified bin/goveralls_windows_amd64.exe
Binary file not shown.
1 change: 1 addition & 0 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ async function run() {
flag_name: core.getInput("flag-name"),
working_directory: core.getInput("working-directory"),
ignore: core.getInput("ignore"),
shallow: core.getBooleanInput("shallow"),
});
}
catch (error) {
Expand Down
6 changes: 6 additions & 0 deletions lib/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ async function run(options) {
args.push(`-flagname=${options.flag_name}`);
}
}
if (options.shallow) {
args.push("-shallow");
}
if (core.isDebug()) {
args.push("-debug");
}
Expand All @@ -108,6 +111,9 @@ async function finish(options) {
if (options.ignore) {
args.push(`-ignore=${options.ignore}`);
}
if (options.shallow) {
args.push("-shallow");
}
if (core.isDebug()) {
args.push("-debug");
}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "actions-goveralls",
"version": "1.4.7",
"version": "1.5.0",
"private": true,
"description": "Coveralls GitHub Action with Go integration powered by mattn/goveralls",
"main": "lib/main.js",
Expand Down

0 comments on commit 3dfb3bd

Please sign in to comment.