Run perl checks as part of flaker ci task

This commit is contained in:
Josef Reidinger 2021-07-01 21:58:45 +02:00
parent 3737b875cc
commit 8a6398fecf
2 changed files with 5 additions and 0 deletions

View File

@ -4,3 +4,4 @@ set -ex
run_as_tester flake8
run_as_tester ./dist/ci/flake-extra
run_as_tester ./dist/ci/perl-check.sh

4
dist/ci/perl-check.sh vendored Executable file
View File

@ -0,0 +1,4 @@
#! /usr/bin/sh
for i in `find . | grep 'p[lm]$'`; do
perl -I bs_copy -Wc $i || exit $?;
done