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 | 100 | use Moo; | |||
16 | 28 | ||||||
16 | 87 | ||||||
7 | |||||||
8 | our $VERSION = '0.01040'; | ||||||
9 | |||||||
10 | 16 | 16 | 10565 | use Pithub::Repos::Actions::Workflows (); | |||
16 | 42 | ||||||
16 | 994 | ||||||
11 | |||||||
12 | extends 'Pithub::Base'; | ||||||
13 | |||||||
14 | |||||||
15 | sub workflows { | ||||||
16 | 1 | 1 | 1 | 613 | return shift->_create_instance( Pithub::Repos::Actions::Workflows::, @_ ); | ||
17 | } | ||||||
18 | |||||||
19 | 1; | ||||||
20 | |||||||
21 | __END__ |