emacs-config/.github/workflows/test.yml

33 lines
721 B
YAML
Raw Normal View History

2021-03-14 14:16:18 -04:00
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
emacs_version:
- '27.1'
- 'snapshot'
include:
- emacs_version: 'snapshot'
allow_failure: true
steps:
- uses: actions/checkout@v2
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
2021-03-14 14:38:47 -04:00
- name: Set up emacs config
2021-03-14 14:16:18 -04:00
run: |
2021-03-14 14:38:47 -04:00
cp -a -r etc local straight init.el .emacs.d/
- name: Test initialization and build
run: |
emacs -batch -l ".emacs.d/init.el"
2021-03-14 14:16:18 -04:00
- name: Verify packages
run: |
2021-03-14 14:38:47 -04:00
emacs -batch -l ".emacs.d/init.el" --eval '(assert (not (nd/verify-required-packages)))'
2021-03-14 14:16:18 -04:00