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