Skip to content

Commit 34a818b

Browse files
committed
Add install to CI file
1 parent 6657891 commit 34a818b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/perl_test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
perl-version: ${{ matrix.perl-version }}
2525

2626
- 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
27+
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
2831

2932
- name: Run tests with prove
3033
run: prove -lv t/

0 commit comments

Comments
 (0)