tvl-depot/.github/workflows/haskell.yml
Griffin Smith 0b22bb099c Fail on all warnings in CI
All the undefineds are gone, so it's time to enable -Werror in CI.
2019-11-30 18:16:48 -05:00

15 lines
243 B
YAML

name: Haskell CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Nix Build
with:
args: default.nix --arg failOnWarnings true
uses: ./.github/actions/nix-build