Try out a more simple workflow. #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |