aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2022-02-21 17:59:29 -0500
committerKyle Meyer <kyle@kyleam.com>2022-02-21 18:01:00 -0500
commitc657cfacc0201c7c298d7987b5b6a62b4d4a2284 (patch)
tree42071b3322bae09cade7e3f1c0791d6e487e8ddc /.travis.yml
parente735cccc4f7032e6b4bbae1a23c4906d89e8ea10 (diff)
downloadsnakemake-mode-c657cfacc0201c7c298d7987b5b6a62b4d4a2284.tar.gz
ci: Switch to GitHub Actions
After GitHub Actions were available, this repository kept using Travis because it worked well enough, especially given this package is very much in maintenance mode. However, going forward it'd be nice to use purcell/setup-emacs action to test various Emacs versions. Don't bother testing against Emacs 24 because the next release will bump the minimum Emacs version to at least 25.1. While touching this setup, drop the Makefile target for downloading dependencies and instead just expect dependencies to be one level up from the snakemake-mode checkout.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 9eb10a1..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-language: python
-
-python:
- - "3.7"
-
-env:
- matrix:
- # - EMACS=emacs24 # This is 24.3, while magit-popup.el requires 24.4.
- - EMACS=emacs-snapshot
-
-install:
- - if [ "$EMACS" = "emacs24" ]; then
- sudo add-apt-repository -y ppa:cassou/emacs &&
- sudo apt-get update -qq &&
- sudo apt-get install -qq emacs24 emacs24-el;
- fi
- - if [ "$EMACS" = "emacs-snapshot" ]; then
- sudo add-apt-repository -y ppa:ubuntu-elisp/ppa &&
- sudo apt-get update -qq &&
- sudo apt-get install -qq emacs-snapshot;
- fi
- - pip install snakemake
-
-before_script:
- make .deps
-
-script:
- make test EMACS=${EMACS}
-
-notifications:
- email:
- on_success: never
- on_failure: always