Skip to content

Commit

Permalink
install buttercup
Browse files Browse the repository at this point in the history
  • Loading branch information
agzam committed Nov 11, 2023
1 parent e19b34c commit f102a03
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/bb-run-tests-emacs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,21 @@ jobs:
- name: Install emacs
uses: purcell/setup-emacs@master
with:
version: 28.1
version: 29.1

- name: install buttercup
run: |-
set -e
script=$(cat <<- 'EOF'
(progn
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(package-initialize)
(unless (package-installed-p 'buttercup)
(package-refresh-contents)
(package-install 'buttercup)))
EOF
)
emacs --batch --eval "$script"
- run: bb run test:emacs

0 comments on commit f102a03

Please sign in to comment.