Skip to content

Commit

Permalink
add perl 5.40 & Werror
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs committed Jun 15, 2024
1 parent 48e47b7 commit b878fa7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
strategy:
matrix:
perl:
- '5.40'
- '5.38'
- '5.36'
- '5.34'
Expand Down Expand Up @@ -47,6 +48,8 @@ jobs:
- name: Install Perl dependencies
run: cpanm --quiet --installdeps --notest .
- name: Build
run: perl Makefile.PL && make
run: |
flags=$( perl -MConfig -e 'print $Config::Config{ccflags}' )
perl Makefile.PL CCFLAGS="$flags -Werror" && make
- name: Test
run: make test

0 comments on commit b878fa7

Please sign in to comment.