aboutsummaryrefslogtreecommitdiffstats
path: root/site-lisp/bind-key-2.4.1/.github/workflows/test.yml
diff options
context:
space:
mode:
authorAstounds <kirito@disroot.org>2026-08-07 16:18:49 -0500
committerAstounds <kirito@disroot.org>2026-08-07 16:18:49 -0500
commit79e04842d239770fbe86bcfa60c693480a6b60cc (patch)
tree24006eab643de7333e24ab80f96ac032766ddeb9 /site-lisp/bind-key-2.4.1/.github/workflows/test.yml
parente90e5cfbc6ca58c26a91a6b449b017b1102069be (diff)
downloademacs-personal-79e04842d239770fbe86bcfa60c693480a6b60cc.tar.lz
emacs-personal-79e04842d239770fbe86bcfa60c693480a6b60cc.tar.xz
emacs-personal-79e04842d239770fbe86bcfa60c693480a6b60cc.zip
test
Diffstat (limited to 'site-lisp/bind-key-2.4.1/.github/workflows/test.yml')
-rw-r--r--site-lisp/bind-key-2.4.1/.github/workflows/test.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/site-lisp/bind-key-2.4.1/.github/workflows/test.yml b/site-lisp/bind-key-2.4.1/.github/workflows/test.yml
new file mode 100644
index 0000000..51fc206
--- /dev/null
+++ b/site-lisp/bind-key-2.4.1/.github/workflows/test.yml
@@ -0,0 +1,34 @@
+## test.yml
+
+name: Main workflow
+on: [push, pull_request]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ emacs_version:
+ - '26.1'
+ - '26.2'
+ - '26.3'
+ - '27.1'
+ - '27.2'
+ - '28.1'
+ - 'snapshot'
+ include:
+ - emacs_version: 'snapshot'
+ allow_failure: true
+ steps:
+ - uses: actions/checkout@v2
+ - uses: purcell/setup-emacs@master
+ with:
+ version: ${{ matrix.emacs_version }}
+
+ - name: Run tests
+ if: matrix.allow_failure != true
+ run: 'make && make test'
+
+ - name: Run tests (allow failure)
+ if: matrix.allow_failure == true
+ run: 'make && make test || true'