Skip to content

Commit 72ddbec

Browse files
authored
tests: Avoid actions' warnings (godotengine#118)
* chore(Eask): Add package metadata * tests: Avoid actions' warnings * chore(Eask): Update eask's commands * Remove extra package-file DSL
1 parent c8c22a6 commit 72ddbec

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
experimental: true
3636

3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3939

4040
- uses: jcs090218/setup-emacs@master
4141
with:

Eask

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
(package-file "gdscript-mode.el")
99
(files "*.el")
1010

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

1315
(depends-on "emacs" "26.3")

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ test:
2626

2727
checkdoc:
2828
@echo "Run checkdoc..."
29-
$(EASK) checkdoc
29+
$(EASK) lint checkdoc
3030

3131
lint:
3232
@echo "Run package-lint..."
33-
$(EASK) lint
33+
$(EASK) lint package
3434

3535
clean:
36-
$(EASK) clean-all
36+
$(EASK) clean all

0 commit comments

Comments
 (0)