From 2f1d8e61f87133276eb2e6ab53c1557c4fd50d7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Tue, 11 Nov 2025 13:30:22 +0800 Subject: [PATCH] git/cabal: run doctest in pre-commit --- nix/git-identities/hooks/cabal/pre-commit | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nix/git-identities/hooks/cabal/pre-commit b/nix/git-identities/hooks/cabal/pre-commit index 8d97c752..51217183 100755 --- a/nix/git-identities/hooks/cabal/pre-commit +++ b/nix/git-identities/hooks/cabal/pre-commit @@ -1,4 +1,6 @@ #!/usr/bin/env bash +set -euo pipefail make style +make doctest make lint