From f52bef01f1c4567fc0bdef489434de50ae8487b0 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Mon, 16 Nov 2020 05:16:56 -0600 Subject: [PATCH] Meta: Update makem.sh, Makefile, test.yml --- .github/workflows/test.yml | 10 +++++++--- Makefile | 3 ++- makem.sh | 3 ++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9ead5f7..5413e6b5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,9 @@ # * test.yml --- Test Emacs packages using makem.sh on GitHub Actions -# https://github.com/alphapapa/makem.sh +# URL: https://github.com/alphapapa/makem.sh +# Version: 0.2 + +# * Commentary: # Based on Steve Purcell's examples at # , @@ -39,6 +42,7 @@ jobs: matrix: emacs_version: - 26.3 + - 27.1 - snapshot steps: - uses: purcell/setup-emacs@master @@ -50,7 +54,7 @@ jobs: - name: Initialize sandbox run: | SANDBOX_DIR=$(mktemp -d) || exit 1 - echo ::set-env name=SANDBOX_DIR::$SANDBOX_DIR + echo "SANDBOX_DIR=$SANDBOX_DIR" >> $GITHUB_ENV ./makem.sh -vv --sandbox=$SANDBOX_DIR --install-deps --install-linters # The "all" rule is not used, because it treats compilation warnings @@ -59,7 +63,7 @@ jobs: - name: Lint # NOTE: Uncomment this line to treat lint failures as passing # so the job doesn't show failure. - continue-on-error: true + # continue-on-error: true run: ./makem.sh -vv --sandbox=$SANDBOX_DIR lint - name: Test diff --git a/Makefile b/Makefile index 17abfe05..68906e93 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ # * makem.sh/Makefile --- Script to aid building and testing Emacs Lisp packages -# This Makefile is from the makem.sh repo: . +# URL: https://github.com/alphapapa/makem.sh +# Version: 0.2 # * Arguments diff --git a/makem.sh b/makem.sh index d110e2c2..2d710a3b 100755 --- a/makem.sh +++ b/makem.sh @@ -2,7 +2,8 @@ # * makem.sh --- Script to aid building and testing Emacs Lisp packages -# https://github.com/alphapapa/makem.sh +# URL: https://github.com/alphapapa/makem.sh +# Version: 0.2 # * Commentary: