File tree 3 files changed +11
-5
lines changed
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
# * test.yml --- Test Emacs packages using makem.sh on GitHub Actions
2
2
3
- # https://github.com/alphapapa/makem.sh
3
+ # URL: https://github.com/alphapapa/makem.sh
4
+ # Version: 0.2
5
+
6
+ # * Commentary:
4
7
5
8
# Based on Steve Purcell's examples at
6
9
# <https://github.com/purcell/setup-emacs/blob/master/.github/workflows/test.yml>,
39
42
matrix :
40
43
emacs_version :
41
44
- 26.3
45
+ - 27.1
42
46
- snapshot
43
47
steps :
44
48
- uses : purcell/setup-emacs@master
50
54
- name : Initialize sandbox
51
55
run : |
52
56
SANDBOX_DIR=$(mktemp -d) || exit 1
53
- echo ::set-env name= SANDBOX_DIR:: $SANDBOX_DIR
57
+ echo " SANDBOX_DIR= $SANDBOX_DIR" >> $GITHUB_ENV
54
58
./makem.sh -vv --sandbox=$SANDBOX_DIR --install-deps --install-linters
55
59
56
60
# The "all" rule is not used, because it treats compilation warnings
59
63
- name : Lint
60
64
# NOTE: Uncomment this line to treat lint failures as passing
61
65
# so the job doesn't show failure.
62
- continue-on-error : true
66
+ # continue-on-error: true
63
67
run : ./makem.sh -vv --sandbox=$SANDBOX_DIR lint
64
68
65
69
- name : Test
Original file line number Diff line number Diff line change 1
1
# * makem.sh/Makefile --- Script to aid building and testing Emacs Lisp packages
2
2
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
4
5
5
6
# * Arguments
6
7
Original file line number Diff line number Diff line change 2
2
3
3
# * makem.sh --- Script to aid building and testing Emacs Lisp packages
4
4
5
- # https://github.com/alphapapa/makem.sh
5
+ # URL: https://github.com/alphapapa/makem.sh
6
+ # Version: 0.2
6
7
7
8
# * Commentary:
8
9
You can’t perform that action at this time.
0 commit comments