Skip to content

Commit

Permalink
build: still working on workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
johnstonskj committed Jun 24, 2024
1 parent 26b402c commit 0a5cf7a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/melpazoid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Check Package
env:
LOCAL_REPO: ${{ github.workspace }}
RECIPE: (sdml-mode :fetcher github :repo "sdm-lang/emacs-sdml-mode" :files ("sdml-mode.el"))
RECIPE: (sdml-mode :fetcher github :repo "sdm-lang/emacs-sdml-mode" :files ("sdml-cli.el" "sdml-mode-abbrev.el" "sdml-mode-h;.el" "sdml-mode-indent.el" "sdml-mode.el"))
# set this to false (or remove it) if the package isn't on MELPA:
EXIST_OK: false
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ jobs:
eldev $ELDEV_ARGS lint
- name: Test the project
# Add --expect 10 to ensure a minimum number of tests!
run: |
eldev $ELDEV_ARGS test --expect 10
eldev $ELDEV_ARGS test
eldev $ELDEV_ARGS compile --warnings-as-errors
- name: Ensure that copyright notices are up-to-date
Expand Down
2 changes: 1 addition & 1 deletion sdml-cli.el
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
(if (null value) "" (format "--%s %s" arg-name value)))))

(defun sdml-cli-make-command (command &rest plist-args)
"Make an sdml command-line COMMAND with additional PLIST-ARGS."
"Make an sdml COMMAND with additional PLIST-ARGS."
(interactive)
(when (eq major-mode 'sdml-mode)
(let* ((cli-name (or sdml-cli-name "sdml"))
Expand Down

0 comments on commit 0a5cf7a

Please sign in to comment.