Skip to content

Commit

Permalink
Merge pull request #29 from jcs-PR/tests/package-metadata
Browse files Browse the repository at this point in the history
tests: Add package metadata
  • Loading branch information
jcs090218 authored Apr 11, 2024
2 parents 0f58683 + 13c063d commit 5dc07a4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,15 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
emacs-version:
- 27.2
- 28.1
- 28.2
- snapshot
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: jcs090218/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}

- uses: actions/setup-node@v2
with:
node-version: '14'

- uses: emacs-eask/setup-eask@master
with:
version: 'snapshot'
Expand Down
7 changes: 6 additions & 1 deletion Eask
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
(package "fussy"
"0.1"
"1.0"
"Fuzzy completion style using `flx'")

(website-url "https://github.com/jojojames/fussy")
(keywords "matching")

(package-file "fussy.el")

(script "test" "echo \"Error: no test specified\" && exit 1")

(source "gnu")
(source "melpa")

Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ install:
compile:
eask compile

.PHONY: clean
clean:
eask clean all

.PHONY: test
test:
eask install-deps --dev
Expand Down

0 comments on commit 5dc07a4

Please sign in to comment.