Skip to content

Commit f5b0d81

Browse files
authored
Merge pull request #190 from jcs-PR/tests/improve-ci
tests: Avoid actions' warnings
2 parents d264cac + 7e205e1 commit f5b0d81

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
with:
1515
persist-credentials: false
1616

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- snapshot
2424

2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727

2828
- uses: jcs090218/setup-emacs@master
2929
with:

Eask

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
(files "*.el")
99

10+
(script "test" "echo \"Error: no test specified\" && exit 1")
11+
1012
(source "gnu")
1113
(source "melpa")
1214

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ test:
2626
$(EASK) test ert ./test/*.el
2727

2828
clean:
29-
$(EASK) clean-all
29+
$(EASK) clean all
3030

3131
tag:
3232
$(eval TAG := $(filter-out $@,$(MAKECMDGOALS)))

0 commit comments

Comments
 (0)