From d4053e9bb5bfdd1ad5af590b52e188fa63dd0c81 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Mon, 11 Mar 2024 22:46:10 -0700 Subject: [PATCH] add perl 5.16 --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48f35af2..4041336a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,10 @@ on: jobs: test: + strategy: + matrix: + os: ["ubuntu-latest"] + perl: ["5.16", "5.32"] runs-on: ubuntu-latest services: redis: @@ -16,6 +20,6 @@ jobs: - uses: actions/checkout@v4 - uses: shogo82148/actions-setup-perl@v1 with: - perl-version: "5.32" + perl-version: ${{ matrix.perl }} - run: cpanm --installdeps . - run: prove -lv t \ No newline at end of file