Skip to content

Try out a more simple workflow. #3

Try out a more simple workflow.

Try out a more simple workflow. #3

Workflow file for this run

name: Earthly
on:
push:
paths:
- "emacs/**.el"
- "emacs/**.org"
- "devbox/**.json"
- ".github/**"
jobs:
tests:
strategy:
matrix:
runner:
- macos-11
- macos-12
- macos-13
- macos-14
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- name: which gtar
run: which gtar
- name: Install devbox
uses: djgoku/devbox-install-action@feature/add-support-for-macos-14
with:
project-path: devbox/cowsay
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