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+ workflow_dispatch :
9+
10+ jobs :
11+ test :
12+ runs-on : ${{ matrix.os }}
13+ continue-on-error : ${{ matrix.experimental }}
14+ strategy :
15+ fail-fast : false
16+ matrix :
17+ os : [ubuntu-latest, macos-latest, windows-latest]
18+ emacs-version :
19+ - 26.3
20+ - 27.2
21+ - 28.2
22+ - 29.2
23+ experimental : [false]
24+ include :
25+ - os : ubuntu-latest
26+ emacs-version : snapshot
27+ experimental : true
28+ - os : macos-latest
29+ emacs-version : snapshot
30+ experimental : true
31+ - os : windows-latest
32+ emacs-version : snapshot
33+ experimental : true
34+ steps :
35+ - uses : actions/checkout@v4
36+
37+ - uses : jcs090218/setup-emacs@master
38+ with :
39+ version : ${{ matrix.emacs-version }}
40+
41+ - uses : emacs-eask/setup-eask@master
42+ with :
43+ version : ' snapshot'
44+
45+ - name : Run tests
46+ run :
47+ make ci
You can’t perform that action at this time.
0 commit comments