Initial commit
This commit is contained in:
34
.github/workflows/perlCritic.yml
vendored
Normal file
34
.github/workflows/perlCritic.yml
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
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@v3
|
||||
- uses: shogo82148/actions-setup-perl@v1.17.0
|
||||
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" \
|
||||
Reference in New Issue
Block a user