From c01f57cb15093848392f8b2552f27796b0b32596 Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Wed, 12 Feb 2025 20:03:18 -0500 Subject: [PATCH] ci: Enable `-Wall -Wcompat -Werror` --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 00775fe..6443d79 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -79,6 +79,10 @@ jobs: - name: Configure shell: bash run: cabal configure --enable-tests + - name: Enable '-Wall -Wcompat -Werror' + shell: bash + run: | + echo 'ghc-options: -Wall -Wcompat -Werror' >> cabal.project.local - name: Build shell: bash run: cabal build