File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 3030 variant : ${{ matrix.racket-variant }}
3131 version : ${{ matrix.racket-version }} # or 'current' for the latest snapshot
3232 - run : raco pkg install --auto
33- - run : raco test .
33+ - run : make test
Original file line number Diff line number Diff line change @@ -2,14 +2,16 @@ SCRBL := raco scribble ++main-xref-in --redirect-main http://docs.racket-lang.or
22
33gh-pages :
44 @git clone git@github.com:dannypsnl/racket-project.git gh-pages -b gh-pages
5-
65OUT_DIR = gh-pages
7- .PHONY : build
6+
7+ .PHONY : build publish test
88build : $(OUT_DIR )
99 @$(SCRBL ) --dest $(OUT_DIR ) scribblings/racket-project.scrbl
1010
11- .PHONY : publish
1211publish : build
1312 @cd $(OUT_DIR ) ; git add -A
1413 @cd $(OUT_DIR ) ; git commit -m " update $$ (date +%Y/%m/%d-%H:%M:%S)"
1514 @cd $(OUT_DIR ) ; git push origin gh-pages
15+
16+ test :
17+ @raco test .
You can’t perform that action at this time.
0 commit comments