Skip to content

Merge branch 'develop' of https://github.com/guidoschmidt/circadian.e… #64

Merge branch 'develop' of https://github.com/guidoschmidt/circadian.e…

Merge branch 'develop' of https://github.com/guidoschmidt/circadian.e… #64

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
emacs-version:
- 27.2
- 28.2
- 29.3
- snapshot
steps:
- uses: actions/checkout@v4
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}
- uses: actions/cache@v4
id: cache-cask-packages
with:
path: .cask
key: cache-cask-packages-000
- uses: actions/cache@v4
id: cache-cask-executable
with:
path: ~/.cask
key: cache-cask-executable-000
- uses: cask/setup-cask@master
if: steps.cache-cask-executable.outputs.cache-hit != 'true'
with:
version: snapshot
- run: echo "$HOME/.cask/bin" >> $GITHUB_PATH
- run: make compile
- run: make test