Start checking PRs with perlcritic
This commit is contained in:
13
t/perlcritic.pl
Executable file
13
t/perlcritic.pl
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Cwd 'abs_path';
|
||||
use File::Basename;
|
||||
|
||||
my $dirname = abs_path(dirname(__FILE__) . "/..");
|
||||
|
||||
print STDERR "Executing perlcritic against $dirname\n";
|
||||
chdir($dirname) or die "Failed to enter $dirname\n";
|
||||
|
||||
exec("perlcritic", ".") or die "Failed to execute perlcritic.";
|
Reference in New Issue
Block a user