Skip to content

Commit 5b38809

Browse files
committed
Testing CI failures
1 parent efbcbdd commit 5b38809

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ jobs:
4646
- uses: perl-actions/[email protected]
4747
with:
4848
cpanfile: "cpanfile"
49-
args: "-v --reinstall --with-suggests"
49+
args: "--reinstall --with-suggests"
5050
sudo: false
51+
verbose: true
5152
- name: Makefile.PL
5253
run: perl Makefile.PL
5354
- name: make test

t/data/perlcriticrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ verbose = %f:%l:%c: [%p] %m (%e, Severity: %s)\n
4747
# Subroutines::RequireFinalReturn, and I prefer the brevity of the simple
4848
# return statement. I don't think the empty list versus undef behavior is that
4949
# confusing.
50+
[-ValuesAndExpressions::ProhibitInterpolationOfLiterals]
5051
[-Community::EmptyReturn]
5152

5253
# This recommends using given/when, but Perl has marked those as experimental

t/style/critic.t

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,13 @@ use Test::More;
4646
skip_unless_author('Coding style tests');
4747

4848
# Load prerequisite modules.
49+
use_prereq('Perl::Critic::Community');
4950
use_prereq('Perl::Critic::Utils');
5051
use_prereq('Test::Perl::Critic');
5152

53+
warn("Perl::Critic ", $Perl::Critic::VERSION, "\n");
54+
warn("Perl::Critic::Community ", $Perl::Critic::Community::VERSION, "\n");
55+
5256
# Force the embedded Perl::Tidy check to use the correct configuration.
5357
local $ENV{PERLTIDY} = 't/data/perltidyrc';
5458

0 commit comments

Comments
 (0)