File tree Expand file tree Collapse file tree 1 file changed +50
-0
lines changed
Expand file tree Collapse file tree 1 file changed +50
-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+ - 28.2
24+ - 29.4
25+ experimental : [false]
26+ include :
27+ - os : ubuntu-latest
28+ emacs-version : snapshot
29+ experimental : true
30+ - os : macos-latest
31+ emacs-version : snapshot
32+ experimental : true
33+ - os : windows-latest
34+ emacs-version : snapshot
35+ experimental : true
36+
37+ steps :
38+ - uses : actions/checkout@v4
39+
40+ - uses : jcs090218/setup-emacs@master
41+ with :
42+ version : ${{ matrix.emacs-version }}
43+
44+ - uses : emacs-eask/setup-eask@master
45+ with :
46+ version : ' snapshot'
47+
48+ - name : Run tests
49+ run :
50+ make ci
You can’t perform that action at this time.
0 commit comments