add test to check if branch is ready for merging

releases
Yanick Champoux 2023-11-12 13:21:38 -05:00
parent d758761f05
commit c8c273056a
1 changed files with 23 additions and 0 deletions

23
t/merge-ready/perltidy.t Normal file
View File

@ -0,0 +1,23 @@
use 5.32.0;
use Test2::V0;
use Git::Wrapper;
use Test::PerlTidy qw( run_tests );
my $target_branch = $ENV{TARGET_BRANCH} // 'main';
my $git = Git::Wrapper->new('.');
my $on_target = grep { "* $target_branch" eq $_ } $git->branch;
if ($on_target) {
run_tests();
}
else {
my @files =
$git->diff( { name_only => 1, diff_filter => 'ACMR' }, $target_branch );
ok Test::PerlTidy::is_file_tidy($_), $_ for @files;
}
done_testing;