emacs-prelude/.github/workflows/ci.yml

15 lines
377 B
YAML
Raw Normal View History

2023-02-24 09:52:31 +02:00
name: 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