branch: elpa/aidermacs
commit dcdcb04e73e4c6a9f6db5ec25dd49ce4d4d8929c
Author: Mingde (Matthew) Zeng <[email protected]>
Commit: Mingde (Matthew) Zeng <[email protected]>
Remove emacs-compat CI
Signed-off-by: Mingde (Matthew) Zeng <[email protected]>
---
.github/workflows/emacs-compat.yml | 23 -----------------------
Makefile | 11 -----------
2 files changed, 34 deletions(-)
diff --git a/.github/workflows/emacs-compat.yml
b/.github/workflows/emacs-compat.yml
deleted file mode 100644
index be2b4a51fc..0000000000
--- a/.github/workflows/emacs-compat.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-name: CI
-
-on: [push, pull_request]
-
-jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- emacs_version: [28.1, 29.1, 30.1, release-snapshot, snapshot]
- steps:
- - uses: purcell/setup-emacs@master
- with:
- version: ${{ matrix.emacs_version }}
-
- - uses: actions/checkout@v2
-
- - name: Print emacs version
- run: emacs --version
-
- - name: Run tests
- run: make test
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 9300c54bef..0000000000
--- a/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-# Makefile for testing aidermacs across Emacs versions
-
-EMACS ?= emacs
-BATCH = $(EMACS) -Q -batch
-
-.PHONY: test
-
-# Main test target
-test:
- @echo "Testing aidermacs..."
- $(BATCH) -L . --eval "(require 'aidermacs)"