From 03fb1cf28c4103adb9e624eff1fb8ce0efea96bc Mon Sep 17 00:00:00 2001 From: Todd Rinaldo Date: Tue, 2 Jan 2024 20:30:00 +0000 Subject: [PATCH] Test includes develop/build modules on default run --- .github/workflows/testsuite.yml | 1 + cpanfile | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 88ba158..87d7292 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -26,6 +26,7 @@ jobs: uses: perl-actions/install-with-cpm@v1 with: cpanfile: "cpanfile" + args: "--with-test --with-develop --with-requires --with-build" - run: perl Makefile.PL - run: make - run: make test diff --git a/cpanfile b/cpanfile index d47c441..c7f7404 100644 --- a/cpanfile +++ b/cpanfile @@ -25,6 +25,11 @@ on 'configure' => sub { requires "ExtUtils::MakeMaker" => "0"; }; +on 'build' => sub { + requires "Test::Pod::Coverage" => 0; + requires "Test::CheckManifest" => 0; +}; + on 'develop' => sub { requires "Test::Pod" => "1.41"; requires "Test::Spelling" => "0.12";