Skip to content

Commit f52bef0

Browse files
committed
Meta: Update makem.sh, Makefile, test.yml
1 parent 244c829 commit f52bef0

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/test.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# * test.yml --- Test Emacs packages using makem.sh on GitHub Actions
22

3-
# https://github.com/alphapapa/makem.sh
3+
# URL: https://github.com/alphapapa/makem.sh
4+
# Version: 0.2
5+
6+
# * Commentary:
47

58
# Based on Steve Purcell's examples at
69
# <https://github.com/purcell/setup-emacs/blob/master/.github/workflows/test.yml>,
@@ -39,6 +42,7 @@ jobs:
3942
matrix:
4043
emacs_version:
4144
- 26.3
45+
- 27.1
4246
- snapshot
4347
steps:
4448
- uses: purcell/setup-emacs@master
@@ -50,7 +54,7 @@ jobs:
5054
- name: Initialize sandbox
5155
run: |
5256
SANDBOX_DIR=$(mktemp -d) || exit 1
53-
echo ::set-env name=SANDBOX_DIR::$SANDBOX_DIR
57+
echo "SANDBOX_DIR=$SANDBOX_DIR" >> $GITHUB_ENV
5458
./makem.sh -vv --sandbox=$SANDBOX_DIR --install-deps --install-linters
5559
5660
# The "all" rule is not used, because it treats compilation warnings
@@ -59,7 +63,7 @@ jobs:
5963
- name: Lint
6064
# NOTE: Uncomment this line to treat lint failures as passing
6165
# so the job doesn't show failure.
62-
continue-on-error: true
66+
# continue-on-error: true
6367
run: ./makem.sh -vv --sandbox=$SANDBOX_DIR lint
6468

6569
- name: Test

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# * makem.sh/Makefile --- Script to aid building and testing Emacs Lisp packages
22

3-
# This Makefile is from the makem.sh repo: <https://github.com/alphapapa/makem.sh>.
3+
# URL: https://github.com/alphapapa/makem.sh
4+
# Version: 0.2
45

56
# * Arguments
67

makem.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
# * makem.sh --- Script to aid building and testing Emacs Lisp packages
44

5-
# https://github.com/alphapapa/makem.sh
5+
# URL: https://github.com/alphapapa/makem.sh
6+
# Version: 0.2
67

78
# * Commentary:
89

0 commit comments

Comments
 (0)