From 81a4678022d08a1ddc58094d429f1f852a84f3f0 Mon Sep 17 00:00:00 2001 From: Olaf Alders Date: Thu, 13 Oct 2022 11:22:38 -0400 Subject: Add a GH workflow to test LWP::Curl --- .github/workflows/test-dependents.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/test-dependents.yml (limited to '.github') diff --git a/.github/workflows/test-dependents.yml b/.github/workflows/test-dependents.yml new file mode 100644 index 0000000..29e6606 --- /dev/null +++ b/.github/workflows/test-dependents.yml @@ -0,0 +1,27 @@ +--- +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.36 + steps: + - uses: actions/checkout@v3 + - name: install extra modules + run: cpm install -g Test::DependentModules + - 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 + run: prove -l xt/dependent-modules.t -- cgit v1.2.1