Skip to content

Adding macos-test workflow. #60

Adding macos-test workflow.

Adding macos-test workflow. #60

Workflow file for this run

name: Earthly
on:
push:
paths:
- "emacs/**.el"
- "emacs/**.org"
- "devbox/**.json"
- ".github/**"
jobs:
tests:
strategy:
matrix:
runner:
- macos-14
- ubuntu-latest
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- name: Install devbox
uses: jetpack-io/devbox-install-action@v0.8.0
with:
project-path: devbox/plugins/emacs/test
enable-cache: "true"
- name: test emacs early-init.el config
run: devbox run -c devbox/plugins/emacs/test/ -- emacs --batch -l ../../emacs/early-init.el
- name: test emacs init.el config
run: devbox run -c devbox/plugins/emacs/test/ -- emacs --batch -l ../../emacs/init.el