File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed
Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+
11+ jobs :
12+ unix-test :
13+ runs-on : ${{ matrix.os }}
14+ strategy :
15+ matrix :
16+ os : [ubuntu-latest, macos-latest]
17+ emacs_version :
18+ - 27.1
19+ - snapshot
20+
21+ steps :
22+ - uses : actions/checkout@v2
23+
24+ - uses : purcell/setup-emacs@master
25+ with :
26+ version : ${{ matrix.emacs_version }}
27+
28+ - name : Run tests
29+ run : ' make ci'
30+
31+ windows-test :
32+ runs-on : windows-latest
33+ strategy :
34+ matrix :
35+ emacs-version :
36+ - 27.1
37+ - snapshot
38+
39+ steps :
40+ - uses : actions/checkout@v2
41+
42+ - uses : jcs090218/setup-emacs-windows@master
43+ with :
44+ version : ${{ matrix.emacs-version }}
45+
46+ - name : Run tests
47+ run : ' make ci'
You can’t perform that action at this time.
0 commit comments