aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2022-08-20 17:43:19 -0400
committerKyle Meyer <kyle@kyleam.com>2022-08-20 17:43:19 -0400
commit849a74c24597c72818f194cf410087fc7c07f3d1 (patch)
treeeb6fee12f66dce10548a886c6877a324bb2e7b83
parentfde294958f119bf30f041db5c4f6b32b9b6cb4d8 (diff)
downloadsnakemake-mode-849a74c24597c72818f194cf410087fc7c07f3d1.tar.gz
ci, make: Include compat for Transient
Transient requires compat as of 5ae3c40 (Depend on compat package from GNU Elpa, 2022-04-22).
-rw-r--r--.github/workflows/test.yml7
-rw-r--r--Makefile2
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
diff --git a/Makefile b/Makefile
index 6134c1c..c431b7d 100644
--- a/Makefile
+++ b/Makefile
@@ -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)