From ce2a31e529d54443db7fd073bd2c52af22025f4c Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Thu, 20 Aug 2020 12:11:10 -0400 Subject: [PATCH] Add --fast to Makefile targets --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 845d264..76dfb0a 100644 --- a/Makefile +++ b/Makefile @@ -18,13 +18,13 @@ dependencies: build: stack build \ --flag yesod-auth-oauth2:example \ - --pedantic --test --no-run-tests + --fast --pedantic --test --no-run-tests .PHONY: test test: stack build \ --flag yesod-auth-oauth2:example \ - --pedantic --test + --fast --pedantic --test .PHONY: lint