File tree Expand file tree Collapse file tree 4 files changed +37
-32
lines changed Expand file tree Collapse file tree 4 files changed +37
-32
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ strategy :
9
+ fail-fast : false
10
+ matrix :
11
+ emacs_version :
12
+ - 24.5
13
+ - 25.3
14
+ - 26.3
15
+ - 27.1
16
+ - snapshot
17
+ steps :
18
+ - uses : purcell/setup-emacs@master
19
+ with :
20
+ version : ${{ matrix.emacs_version }}
21
+
22
+ - uses : actions/checkout@v2
23
+
24
+ - name : Print emacs version
25
+ run : |
26
+ emacs --version
27
+
28
+ - name : Run tests
29
+ run : |
30
+ make test
31
+
32
+ - name : Print results
33
+ if : ${{ always() }}
34
+ run : |
35
+ cat test-results.txt
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 56
56
# make test TAG=repeat
57
57
# This will only run tests pertaining to the repeat system.
58
58
test :
59
- $(EMACS ) -nw -Q -L . $(LIBS ) -l evil-tests.el \
59
+ $(EMACS ) -nw -Q --batch - L . $(LIBS ) -l evil-tests.el \
60
60
--eval " (evil-tests-initialize '(${TAG} ) '(${PROFILER} ))"
61
61
62
62
# Byte-compile Evil and run all tests.
Original file line number Diff line number Diff line change 1
1
![ An extensible vi layer for Emacs] ( https://raw.githubusercontent.com/emacs-evil/evil/master/doc/logo.png )
2
2
3
- [ ![ Build Status ] ( https://travis-ci.org /emacs-evil/evil. svg?branch=master )] ( https://travis-ci.org /emacs-evil/evil )
3
+ [ ![ Build status ] ( https://github.com /emacs-evil/evil/actions/workflows/test.yml/badge. svg )] ( https://github.com /emacs-evil/evil/actions/workflows/test.yml )
4
4
[ ![ MELPA] ( https://melpa.org/packages/evil-badge.svg )] ( https://melpa.org/#/evil )
5
5
[ ![ MELPA Stable] ( https://stable.melpa.org/packages/evil-badge.svg )] ( https://stable.melpa.org/#/evil )
6
6
[ ![ Documentation Status] ( https://readthedocs.org/projects/evil/badge/?version=latest )] ( https://evil.readthedocs.io/en/latest/?badge=latest )
You can’t perform that action at this time.
0 commit comments