We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50bb2ae commit 6e59459Copy full SHA for 6e59459
1 file changed
.github/workflows/ci.yml
@@ -19,6 +19,7 @@ jobs:
19
runs-on: ubuntu-${{ matrix.version }}
20
env:
21
CC: ${{ matrix.compiler }}
22
+ CFLAGS: -Werror
23
24
steps:
25
- name: Checkout repository
@@ -36,7 +37,7 @@ jobs:
36
37
if: matrix.version >= 22.04
38
run: |
39
# Use ASAN and UBSAN
- CFLAGS="-fsanitize=address,undefined"
40
+ CFLAGS="$CFLAGS -fsanitize=address,undefined"
41
# Recommended for better error traces
42
CFLAGS="$CFLAGS -fno-omit-frame-pointer"
43
# Make UBSAN reports fatal
0 commit comments