Bump shogo82148/actions-setup-perl from 1.31.3 to 1.31.4 #26
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: Perlcritic check | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
critic: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: shogo82148/[email protected] | |
with: | |
perl-version: 5.32 | |
install-modules-with: cpanm | |
install-modules: Perl::Critic Task::PerlCriticAllPolicies | |
install-modules-args: --notest | |
- uses: reviewdog/action-setup@v1 | |
with: | |
reviewdog_version: latest # Optional. [latest,nightly,v.X.Y.Z] | |
- name: run perlcritic and send report via reviewdog | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
(perlcritic --verbose 1 --profile .perlcritic ./FHEM; perlcritic --verbose 1 --profile .perlcritic ./lib; ) | \ | |
reviewdog -efm '%f:%l:%c:%m' \ | |
-name="perlcritic" \ | |
-reporter="github-pr-check" \ | |
-filter-mode="added" \ | |
-fail-on-error="false" \ | |
-level="warning" \ |