File tree Expand file tree Collapse file tree 1 file changed +54
-0
lines changed
Expand file tree Collapse file tree 1 file changed +54
-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+ concurrency :
11+ group : ${{ github.workflow }}-${{ github.ref }}
12+ cancel-in-progress : true
13+
14+ jobs :
15+ test :
16+ runs-on : ${{ matrix.os }}
17+ continue-on-error : ${{ matrix.experimental }}
18+ strategy :
19+ fail-fast : false
20+ matrix :
21+ os : [ubuntu-latest, macos-latest, windows-latest]
22+ emacs-version :
23+ - 27.2
24+ - 28.2
25+ - 29.1
26+ experimental : [false]
27+ include :
28+ - os : ubuntu-latest
29+ emacs-version : snapshot
30+ experimental : true
31+ - os : macos-latest
32+ emacs-version : snapshot
33+ experimental : true
34+ - os : windows-latest
35+ emacs-version : snapshot
36+ experimental : true
37+
38+ steps :
39+ - uses : actions/checkout@v4
40+
41+ - uses : jcs090218/setup-emacs@master
42+ with :
43+ version : ${{ matrix.emacs-version }}
44+
45+ - uses : emacs-eask/setup-eask@master
46+ with :
47+ version : ' snapshot'
48+
49+ - name : Run tests
50+ run : |
51+ eask clean all
52+ eask package
53+ eask install
54+ eask compile
You can’t perform that action at this time.
0 commit comments