Skip to content

Commit

Permalink
ci: Enable -Wall -Wcompat -Werror
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Feb 13, 2025
1 parent d6637d1 commit aa598d4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
- uses: haskell-actions/setup@v2
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit aa598d4

Please sign in to comment.