From 3ae262c452c55dffa6a39f3cbc7ab5954604fd4a Mon Sep 17 00:00:00 2001 From: LDA Date: Tue, 10 Sep 2024 21:39:08 +0200 Subject: [PATCH] [CI] Be stringent on flags --- .forgejo/workflows/check-gcc.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/check-gcc.yaml b/.forgejo/workflows/check-gcc.yaml index b28fa13..cd6d98b 100644 --- a/.forgejo/workflows/check-gcc.yaml +++ b/.forgejo/workflows/check-gcc.yaml @@ -1,4 +1,4 @@ -name: Checks Parsee's correctness on GCC +name: Checks Parsee's correctness on GCC+Debian on: [push] jobs: compile: @@ -23,7 +23,10 @@ jobs: - name: Clone Parsee uses: actions/checkout@v3 - name: Build Parsee - run: 'make && make ayadoc' + run: > + echo 'CFLAGS=-Werror -Wall -Wextra -pedantic' >> build.conf + cat build.conf + make && make ayadoc - name: Install Parsee run: 'make install'