diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0cdc2e1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: emacs +cache: apt +env: + - EVM_EMACS=emacs-24.3-travis + - EVM_EMACS=emacs-24.1-travis + - EVM_EMACS=emacs-25.2-travis + - EVM_EMACS=emacs-git-snapshot-travis +matrix: + - fast_finish: true + - allow_failures: + - env: EVM_EMACS=emacs-git-snapshot-travis +before_install: + - curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > travis.sh && source ./travis.sh + - evm install $EVM_EMACS --use --skip + - cask +install: + - cask install +script: +- ./run-tests.sh + diff --git a/Cask b/Cask new file mode 100644 index 0000000..479c49a --- /dev/null +++ b/Cask @@ -0,0 +1,8 @@ +;; -*-emacs-lisp-*- +(source gnu) +(source melpa) +(package-file "autoscratch.el") +(development + (depends-on "package-lint") + (depends-on "ert") + (depends-on "ert-runner"))