From 59e879bd70c2322cd300450dff91f36e78c3bfa4 Mon Sep 17 00:00:00 2001 From: Liam Date: Sun, 17 Apr 2022 01:18:44 -0400 Subject: [PATCH] GitHub actions CI (#1362) This addresses #1281. We just test whether Emacs will start with Prelude, which should uncover critical mistakes if any. --- .github/workflows/github-actions.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/github-actions.yml diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml new file mode 100644 index 0000000..0a3e814 --- /dev/null +++ b/.github/workflows/github-actions.yml @@ -0,0 +1,14 @@ +name: Prelude CI +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v1 + - name: install emacs + run: sudo apt-get update && sudo apt-get install -y emacs + - name: put prelude in the right place + run: ln -s $(pwd) $HOME/.emacs.d + - name: load prelude + run: emacs --batch --load init.el