FIX set up config for testing

This commit is contained in:
Nathan Dwarshuis 2021-03-14 14:38:47 -04:00
parent 46aac1e38c
commit 117c6b2a31
1 changed files with 7 additions and 3 deletions

View File

@ -18,11 +18,15 @@ jobs:
with: with:
version: ${{ matrix.emacs_version }} version: ${{ matrix.emacs_version }}
- name: Run initialization - name: Set up emacs config
run: | run: |
emacs -batch -l "init.el" cp -a -r etc local straight init.el .emacs.d/
- name: Test initialization and build
run: |
emacs -batch -l ".emacs.d/init.el"
- name: Verify packages - name: Verify packages
run: | run: |
emacs -batch -l "init.el" --eval '(assert (not (nd/verify-required-packages)))' emacs -batch -l ".emacs.d/init.el" --eval '(assert (not (nd/verify-required-packages)))'