We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eadddb commit fd3a739Copy full SHA for fd3a739
Makefile
@@ -2,14 +2,16 @@ SCRBL := raco scribble ++main-xref-in --redirect-main http://docs.racket-lang.or
2
3
gh-pages:
4
@git clone [email protected]:dannypsnl/racket-project.git gh-pages -b gh-pages
5
-
6
OUT_DIR = gh-pages
7
-.PHONY: build
+
+.PHONY: build publish test
8
build: $(OUT_DIR)
9
@$(SCRBL) --dest $(OUT_DIR) scribblings/racket-project.scrbl
10
11
-.PHONY: publish
12
publish: build
13
@cd $(OUT_DIR); git add -A
14
@cd $(OUT_DIR); git commit -m "update $$(date +%Y/%m/%d-%H:%M:%S)"
15
@cd $(OUT_DIR); git push origin gh-pages
16
+test:
17
+ @raco test .
0 commit comments