deriving-openapi3/runDoctests.sh

10 lines
344 B
Bash
Raw Normal View History

2022-01-28 17:45:57 +03:00
#!/bin/sh
set -e
EXTENSIONS="-XAllowAmbiguousTypes -XScopedTypeVariables -XKindSignatures -XDataKinds -XTypeOperators -XFlexibleInstances -XTypeApplications -XUndecidableInstances -XTypeFamilies -XPolyKinds"
DEPENDENCIES="--package doctest --package yaml"
stack exec $DEPENDENCIES -- find src -name '*.hs' -exec doctest $EXTENSIONS '{}' \;