From 760e75eec4c5fe9a754671ef9738943a07b59401 Mon Sep 17 00:00:00 2001 From: Kang-min Liu Date: Sun, 24 Jul 2022 23:01:39 +0900 Subject: [PATCH] adjust CI to use two latest perl versions. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55a0c5ec..ee09adc2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: with: directory: "lib script t dev-bin" - name: install perlnitpick - run: cpanm --notest --quiet https://github.com/gugod/App-PerlNitpick.git + run: cpanm --notest --quiet App::PerlNitpick - name: run perlnitpick run: perlnitpick --inplace --rules=RemoveTrailingWhitespace,RemoveUnusedVariables,RemoveUnusedInclude,RemoveUnusedImport . - name: suggester @@ -26,7 +26,7 @@ jobs: strategy: matrix: os: ['ubuntu-18.04'] - perl: [ '5.32', '5.30' ] + perl: [ '5.36', '5.34' ] name: Perl ${{ matrix.perl }} on ${{ matrix.os }} steps: - uses: actions/checkout@v2