deriving-openapi3/runDoctests.sh

10 lines
344 B
Bash
Executable File

#!/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 '{}' \;