Skip to content

Commit

Permalink
GitHub actions CI (bbatsov#1362)
Browse files Browse the repository at this point in the history
This addresses bbatsov#1281. 

We just test whether Emacs will start with Prelude, which should uncover critical mistakes if any.
  • Loading branch information
hut8 authored and biern committed Oct 16, 2022
1 parent be08deb commit 4b3565c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4b3565c

Please sign in to comment.