branch: externals/leaf
commit 7520119d5a049a1b57bac9232d91211b17c87dfd
Merge: 447b152 02081f4
Author: Naoya Yamashita <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #448 from conao3/feature#447
feature#447
---
.github/workflows/test.yml | 26 +++++++++++++++-----------
leaf.el | 2 +-
2 files changed, 16 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f0889c0..8a90e6c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,10 +1,13 @@
name: Main workflow
-on: [pull_request]
+on:
+ push: {branches: [master]}
+ pull_request: {branches: [master]}
jobs:
build:
runs-on: ubuntu-latest
strategy:
+ fail-fast: false
matrix:
emacs_version:
- '24.4'
@@ -15,20 +18,21 @@ jobs:
- '26.1'
- '26.2'
- '26.3'
+ - '27.1'
- 'snapshot'
include:
- emacs_version: 'snapshot'
allow_failure: true
steps:
- - uses: actions/checkout@v1
- - uses: purcell/setup-emacs@master
- with:
- version: ${{ matrix.emacs_version }}
+ - uses: actions/checkout@v1
+ - uses: purcell/setup-emacs@master
+ with:
+ version: ${{ matrix.emacs_version }}
- - name: Run tests
- if: matrix.allow_failure != true
- run: 'make check'
+ - name: Run tests
+ if: matrix.allow_failure != true
+ run: 'make check'
- - name: Run tests (allow failure)
- if: matrix.allow_failure == true
- run: 'make check || true'
+ - name: Run tests (allow failure)
+ if: matrix.allow_failure == true
+ run: 'make check || true'
diff --git a/leaf.el b/leaf.el
index 5bf7e68..03a62c4 100644
--- a/leaf.el
+++ b/leaf.el
@@ -5,7 +5,7 @@
;; Author: Naoya Yamashita <[email protected]>
;; Maintainer: Naoya Yamashita <[email protected]>
;; Keywords: lisp settings
-;; Version: 4.2.7
+;; Version: 4.2.8
;; URL: https://github.com/conao3/leaf.el
;; Package-Requires: ((emacs "24.4"))