We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcd12e0 commit 7b2aad0Copy full SHA for 7b2aad0
1 file changed
Build.PL
@@ -14,11 +14,12 @@ use builder::custom;
14
use File::Basename;
15
use File::Spec;
16
17
-my $tap_harness_args = (
+my $tap_harness_args = {
18
"verbosity" => 1,
19
"merge" => 1,
20
- "formatter" => "TAP::Formatter::GitHubActions",
21
- );
+ "formatter_class" => "TAP::Formatter::GitHubActions",
+
22
+ };
23
24
my %args = (
25
license => 'perl_5',
@@ -56,7 +57,7 @@ my %args = (
56
57
58
test_files => ((-d '.git' || $ENV{RELEASE_TESTING}) && -d 'xt') ? 't/ xt/' : 't/',
59
recursive_test_files => 1,
- test_harness_args => $tap_harness_args,
60
+ tap_harness_args => $tap_harness_args,
61
);
62
63
if (-d 'share') {
0 commit comments