We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7275276 commit 7dc88f2Copy full SHA for 7dc88f2
.github/workflows/ert.yml
@@ -14,8 +14,17 @@ jobs:
14
15
- name: Run ERT tests
16
run: |
17
+ git submodule update --init --recursive
18
cd test
19
emacs -Q -L .. -L . \
20
+ --eval "(progn
21
+ (require 'package)
22
+ (add-to-list 'package-archives '(\"melpa\" . \"https://melpa.org/packages/\") t)
23
+ (add-to-list 'package-archives '(\"gnu\" . \"https://elpa.gnu.org/packages/\") t)
24
+ (package-initialize)
25
+ (setq package-install-upgrade-built-in t)
26
+ (package-refresh-contents)
27
+ (package-install 'transient))" \
28
$(find .. -mindepth 1 -maxdepth 1 \
29
\( -name '.*.el' -prune -o -name '*.el' -type f -printf ' -l %p' \)) \
30
$(find . -mindepth 1 -maxdepth 1 \
0 commit comments