Skip to content

Commit 9efa7e1

Browse files
authored
Merge pull request #162 from jcs-PR/tests/improve-ci
tests: Avoid actions' warnings
2 parents 5aa7807 + 36ce9d6 commit 9efa7e1

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
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v3
1212

1313
- name: MkDocs
1414
run: |

.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,8 +2,13 @@
22
"1.0"
33
"Haskell support for lsp-mode")
44

5+
(website-url "https://github.com/emacs-lsp/lsp-haskell")
6+
(keywords "haskell")
7+
58
(package-file "lsp-haskell.el")
69

10+
(script "test" "echo \"Error: no test specified\" && exit 1")
11+
712
(source "gnu")
813
(source "melpa")
914

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ lint:
2121
$(EASK) lint package
2222

2323
clean:
24-
$(EASK) clean-all
24+
$(EASK) clean all
2525

2626
.PHONY : test compile checkdoc lint clean tag

0 commit comments

Comments
 (0)