diff options
| author | James Nguyen <james@jojojames.com> | 2022-05-28 22:25:38 -0400 |
|---|---|---|
| committer | James Nguyen <james@jojojames.com> | 2022-05-28 22:25:38 -0400 |
| commit | 393f16f788d0b4fd3be109167d301f8a9efb15ca (patch) | |
| tree | b596e09dace55f65bed4d84555447f9993835fbd | |
| parent | 1166e5aa53a47d8633fa5a8365b65a0cc1755d5f (diff) | |
Try to print emacs version
| -rw-r--r-- | .github/workflows/build.yaml | 12 |
1 files changed, 11 insertions, 1 deletions
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 |
