GitHub actions CI (#1362)

This addresses #1281. 

We just test whether Emacs will start with Prelude, which should uncover critical mistakes if any.
This commit is contained in:
Liam 2022-04-17 01:18:44 -04:00 committed by GitHub
parent ea42da05c4
commit 59e879bd70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

14
.github/workflows/github-actions.yml vendored Normal file
View file

@ -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