Skip to content

Commit fb10730

Browse files
authored
tests: Minor improvement for CI tests (#741)
* tests: Minor improvement for CI tests * tests(Makefile): update Eask's clean command
1 parent 17e5286 commit fb10730

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
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
@@ -52,7 +52,7 @@ jobs:
5252
wget https://github.com/rust-analyzer/rust-analyzer/releases/download/$RUST_ANALYZER_VERSION/rust-analyzer-linux -O $HOME/bin/rust-analyzer
5353
chmod +x $HOME/bin/rust-analyzer
5454
55-
- uses: actions/checkout@v2
55+
- uses: actions/checkout@v3
5656

5757
- name: Run tests
5858
run: 'make ci'

Eask

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
(package "lsp-ui"
2-
"8.0.0"
2+
"8.0.1"
33
"UI modules for lsp-mode")
44

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

710
(files "*.el" "lsp-ui-doc.html")
811

12+
(script "test" "echo \"Error: no test specified\" && exit 1")
13+
914
(source "gnu")
1015
(source "melpa")
1116

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ci: clean build compile checkdoc
1414
build:
1515
$(EASK) package
1616
$(EASK) install
17-
$(EASK) clean-elc
17+
$(EASK) clean elc
1818

1919
compile:
2020
@echo "Compiling..."
@@ -34,6 +34,6 @@ lint:
3434
@$(EASK) lint package
3535

3636
clean:
37-
@$(EASK) clean-all
37+
@$(EASK) clean all
3838

3939
.PHONY: ci build compile test clean

0 commit comments

Comments
 (0)