diff options
-rw-r--r-- | .github/workflows/test.yml | 7 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a76344a..887c562 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,11 @@ jobs: uses: purcell/setup-emacs@master with: version: ${{ matrix.emacs_version }} + - name: Check out compat + uses: actions/checkout@v2 + with: + repository: phikal/compat.el + path: compat - name: Check out transient uses: actions/checkout@v2 with: @@ -32,6 +37,8 @@ jobs: run: | python -m pip install --upgrade pip pip install snakemake + - name: Build compat + run: make -C compat compile - name: Build snakemake-mode run: make -C snakemake-mode all - name: Test snakemake-mode @@ -1,5 +1,5 @@ -LOAD_PATH = -L ../transient/lisp -L . +LOAD_PATH = -L ../compat -L ../transient/lisp -L . EMACS = emacs BATCH = $(EMACS) -Q --batch $(LOAD_PATH) |