From f0a9386bfc8ea920f52c27cfbd83ed104a8cb99d Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Mon, 18 Oct 2021 12:35:30 +0200 Subject: ci: more splitting up MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- .github/workflows/ci.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea73d2d..e6b385e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,20 @@ jobs: run: | ~/.emacs.d/bin/doom sync - - name: Check GNU Emacs + - name: Check Doom installation run: | ~/.emacs.d/bin/doom doctor test -z "$(~/.emacs.d/bin/doom doctor | grep 'errors!')" + + - name: Try to start Emacs + run: | + echo "Attempting startup..." + ${EMACS:=emacs} -nw --batch \ + --eval '(let ((debug-on-error t) + (url-show-status nil) + (user-emacs-directory default-directory) + (custom-theme-directory default-directory) + (user-init-file (expand-file-name "init.el"))) + (load-file user-init-file) + (run-hooks (quote after-init-hook)))' + echo "Startup successful" -- cgit v1.2.3