Skip to content

Commit c1843b1

Browse files
committed
Separate the dependency of make test on .cask
1 parent d4b7076 commit c1843b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/checkout@v2
3838
- name: Run tests
3939
if: matrix.allow_failure != true
40-
run: 'make test'
40+
run: 'make .cask test'
4141
- name: Run tests (allow failure)
4242
if: matrix.allow_failure == true
4343
run: 'make test || true'

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dev:
5454
#
5555
# for an example of using a script like this with the 'git bisect run'
5656
# command.
57-
test: .cask clean all
57+
test: clean all
5858
touch tests/project/1/.git
5959
$(EMACS) -Q -batch -L lisp/ --eval \
6060
"(let ((default-directory (expand-file-name \".cask\" default-directory))) \

0 commit comments

Comments
 (0)