branch: externals/sql-indent
commit dad96053fd56cc578913fa4fc960dd73f8946dbd
Author: Alex Harsanyi <alexharsa...@gmail.com>
Commit: Alex Harsanyi <alexharsa...@gmail.com>

    Release 1.5, remove Travis, add GitHub Actions status badge
---
 .gitignore    |  1 +
 .travis.yml   | 36 ------------------------------------
 README.md     |  2 +-
 sql-indent.el |  2 +-
 4 files changed, 3 insertions(+), 38 deletions(-)

diff --git a/.gitignore b/.gitignore
index 66d946e..82faba0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
 # -*- mode: conf -*-
+ChangeLog
 sql-indent-autoloads.el
 sql-indent-pkg.el
 *.elc
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 72b3869..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-language: emacs-lisp
-
-# Require sudo because Emacs needs to disable ASLR to dump, only possible on
-# sudo-enabled environment.  See also
-# https://github.com/travis-ci/travis-ci/issues/9061
-# https://github.com/flycheck/emacs-travis/issues/13
-
-sudo: required
-dist: trusty
-
-cache:
-  - directories:
-      # Cache stable Emacs binaries (saves 1min per job)
-      - "$HOME/emacs/"
-      
-# Allow Emacs snapshot builds to fail and don’t wait for these as they can
-# take a looooong time
-
-matrix:
-  fast_finish: true
-  allow_failures:
-    - env: EMACS_VERSION=snapshot
-env:
-  - EMACS_VERSION=26.2
-before_install:
-  # Configure $PATH: Executables are installed to $HOME/bin
-  - export PATH="$HOME/bin:$PATH"
-  # Download the makefile to emacs-travis.mk
-  - wget 
'https://raw.githubusercontent.com/alex-hhh/emacs-travis/master/emacs-travis.mk'
-  # Install Emacs (according to $EMACS_VERSION)
-  - make -f emacs-travis.mk install_emacs
-install:
-  # Install your dependencies
-script:
-  - emacs -batch -Q --no-site-file -L . -f batch-byte-compile *.el
-  - emacs -batch -Q --no-site-file -L . -l sql-indent-test.el -f 
ert-run-tests-batch-and-exit
diff --git a/README.md b/README.md
index 4351078..77534c6 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # Syntax based indentation for SQL files for GNU Emacs
 
-[![Build 
Status](https://travis-ci.org/alex-hhh/emacs-sql-indent.svg?branch=master)](https://travis-ci.org/alex-hhh/emacs-sql-indent)
+![CI](https://github.com/alex-hhh/emacs-sql-indent/workflows/CI/badge.svg)
 
 sql-indent.el is a GNU Emacs minor mode which adds support for syntax-based
 indentation when editing SQL code: TAB indents the current line based on the
diff --git a/sql-indent.el b/sql-indent.el
index 4e8e381..4d6e699 100644
--- a/sql-indent.el
+++ b/sql-indent.el
@@ -4,7 +4,7 @@
 
 ;; Author: Alex Harsanyi <alexharsa...@gmail.com>
 ;; Created: 27 Sep 2006
-;; Version: 1.4
+;; Version: 1.5
 ;; Keywords: languages sql
 ;; Homepage: https://github.com/alex-hhh/emacs-sql-indent
 ;; Package-Requires: ((cl-lib "0.5"))

Reply via email to