diff options
author | Griffin Smith <root@gws.fyi> | 2019-11-30T23·16-0500 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-11-30T23·16-0500 |
commit | 0b22bb099c9f2254d16784e5897b18e9e410c2fa (patch) | |
tree | 295a1781a95e6f435b7c5469de13144fbace9a74 /.github/workflows/haskell.yml | |
parent | 97a5c61f28ba98728bab390e0ea745edfbea7103 (diff) |
Fail on all warnings in CI
All the undefineds are gone, so it's time to enable -Werror in CI.
Diffstat (limited to '.github/workflows/haskell.yml')
-rw-r--r-- | .github/workflows/haskell.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index e1a57d44005e..df82de3e8caf 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -11,5 +11,5 @@ jobs: - uses: actions/checkout@v1 - name: Nix Build with: - args: default.nix + args: default.nix --arg failOnWarnings true uses: ./.github/actions/nix-build |