Skip to content

Commit d0eac26

Browse files
authored
Merge pull request #5 from dannypsnl/test
[ci] allow controlling testing range
2 parents 9eadddb + 9250036 commit d0eac26

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/racket.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
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

Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@ SCRBL := raco scribble ++main-xref-in --redirect-main http://docs.racket-lang.or
22

33
gh-pages:
44
@git clone git@github.com:dannypsnl/racket-project.git gh-pages -b gh-pages
5-
65
OUT_DIR = gh-pages
7-
.PHONY: build
6+
7+
.PHONY: build publish test
88
build: $(OUT_DIR)
99
@$(SCRBL) --dest $(OUT_DIR) scribblings/racket-project.scrbl
1010

11-
.PHONY: publish
1211
publish: 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 .

0 commit comments

Comments
 (0)