yabai: run Emacs with proper shell env #840
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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: .stack-work cache | |
uses: actions/cache@v4 | |
with: | |
path: melkor/.stack-work | |
key: ${{ runner.os }}-stack-work-${{ hashFiles('melkor/stack.yaml.lock') }} | |
restore-keys: | | |
${{ runner.os }}-stack-work | |
- name: $HOME/.stack cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.stack | |
key: ${{ runner.os }}-stack-${{ hashFiles('melkor/stack.yaml.lock') }} | |
restore-keys: | | |
${{ runner.os }}-stack | |
- name: Melkor tests | |
run: ./eru-new.sh test | |
- name: Shape the world! | |
run: ./eru-new.sh |