From 393f16f788d0b4fd3be109167d301f8a9efb15ca Mon Sep 17 00:00:00 2001 From: James Nguyen Date: Sat, 28 May 2022 22:25:38 -0400 Subject: [PATCH] Try to print emacs version --- .github/workflows/build.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7011e6b..cc31816 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -19,14 +19,24 @@ jobs: - 28.1 - snapshot steps: - - uses: actions/checkout@v2 - uses: purcell/setup-emacs@master with: version: ${{ matrix.emacs_version }} + + - uses: actions/checkout@v2 + + - name: Print emacs version + run: | + emacs --version + - uses: cask/setup-cask@master with: version: snapshot + - run: cask install + - run: make compile + - run: make lint + - run: make test