test dependent modules #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: test dependent modules | |
on: | |
workflow_dispatch: | |
jobs: | |
build-and-test-job: | |
name: Build distribution | |
runs-on: ubuntu-20.04 | |
container: | |
image: perldocker/perl-tester:5.34 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install extra modules | |
run: cpm install -g Test::DependentModules CPAN::Reporter | |
Math::Random::ISAAC Math::Random::ISAAC::XS MooseX::ConfigFromFile | |
MooseX::Getopt HTML::Tree HTML::Formatter Locale::Util RapidApp | |
App::perlimports Dist::Zilla PLS Promise::Me Archive::Tar::Wrapper | |
Term::ReadLine::Gnu Test::FailWarnings Test::File::ShareDir | |
Chess::Plisco Marpa::R2 Perl::Critic Test::HTML::Content | |
Test2::Plugin::Feature | |
- name: Run Tests | |
env: | |
AUTHOR_TESTING: 0 | |
AUTOMATED_TESTING: 1 | |
EXTENDED_TESTING: 1 | |
RELEASE_TESTING: 1 | |
run: auto-build-and-test-dist | |
- name: Test Dependents | |
env: | |
TEST_DEPENDENTS: 1 | |
PERL_TEST_DM_CPAN_VERBOSE: 1 | |
run: prove -l xt/dependent-modules.t |