We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6657891 commit 34a818bCopy full SHA for 34a818b
.github/workflows/perl_test.yml
@@ -24,7 +24,10 @@ jobs:
24
perl-version: ${{ matrix.perl-version }}
25
26
- name: Check syntax
27
- run: for f in `find . -name "*.pm" -o -name "pg_format" -o -name "*.pl" -o -name "*.t"`; do perl -c $f; done
+ run: for f in `find . -name "*.pm" -o -name "pg_format" -o -name "*.pl" -o -name "*.t"`; do perl -I./lib/ -wc $f; done
28
+
29
+ - name: Make install
30
+ run: perl Makefile.PL && make && make install
31
32
- name: Run tests with prove
33
run: prove -lv t/
0 commit comments