File Coverage

blib/lib/Pithub/Repos/Actions.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Pithub::Repos::Actions;
2             our $AUTHORITY = 'cpan:PLU';
3              
4             # ABSTRACT: Github v3 Repo Actions API
5              
6 16     16   109 use Moo;
  16         39  
  16         85  
7              
8             our $VERSION = '0.01041';
9              
10 16     16   12504 use Pithub::Repos::Actions::Workflows ();
  16         50  
  16         1118  
11              
12             extends 'Pithub::Base';
13              
14              
15             sub workflows {
16 1     1 1 760 return shift->_create_instance( Pithub::Repos::Actions::Workflows::, @_ );
17             }
18              
19             1;
20              
21             __END__