Skip to content

Commit de2d898

Browse files
authored
tests: Avoid actions' warnings (#416)
* Avoid actions' warnings * Add package metadata * Update eask's clean command
1 parent e05c1b6 commit de2d898

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-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

1515
- uses: purcell/setup-emacs@master
1616
with:

.github/workflows/test.yml

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

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626

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

Eask

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
"3.0"
33
"Java support for lsp-mode")
44

5+
(website-url "https://github.com/emacs-lsp/lsp-java")
6+
(keywords "languages" "tools")
7+
58
;; XXX: Linter will report errors because of the package main file; let's
69
;; disable this for now!
710
;;(package-file "lsp-java.el")
811

912
(files "*.el")
1013

14+
(script "test" "echo \"Error: no test specified\" && exit 1")
15+
1116
(source "gnu")
1217
(source "melpa")
1318

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ lint:
1616
@$(EASK) lint package
1717

1818
clean:
19-
$(EASK) clean-all
19+
$(EASK) clean all
2020

2121
# TODO: do we have tests?
2222
test:

0 commit comments

Comments
 (0)