We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3e2f0f commit 81bca8cCopy full SHA for 81bca8c
.github/workflows/linux.yml
@@ -59,7 +59,7 @@ jobs:
59
- name: Test
60
run: make test
61
62
- c-plus-plus:
+ werror:
63
64
runs-on: ubuntu-latest
65
@@ -68,6 +68,9 @@ jobs:
68
perl:
69
- latest
70
71
+ compiler:
72
+ - gcc
73
+ - g++
74
75
name: Perl ${{ matrix.perl }}
76
steps:
@@ -90,7 +93,7 @@ jobs:
90
93
- name: Build
91
94
run: |
92
95
flags=$( perl -MConfig -e 'print $Config::Config{ccflags}' )
- perl Makefile.PL CCFLAGS="$flags -Werror" CC=g++ && make
96
+ perl Makefile.PL CCFLAGS="$flags -Werror" CC=${{ matrix.compiler }} && make
97
98
99
0 commit comments