File tree Expand file tree Collapse file tree 4 files changed +525
-443
lines changed Expand file tree Collapse file tree 4 files changed +525
-443
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ paths-ignore :
7
+ - LICENSE
8
+ - README.org
9
+
10
+ jobs :
11
+ build :
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.4
23
+ - 30.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
+ exclude :
36
+ - os : macos-latest
37
+ emacs-version : 26.3
38
+ - os : macos-latest
39
+ emacs-version : 27.2
40
+
41
+ steps :
42
+ - uses : jcs090218/setup-emacs@master
43
+ with :
44
+ version : ${{ matrix.emacs-version }}
45
+
46
+ - uses : emacs-eask/setup-eask@master
47
+ with :
48
+ version : ' snapshot'
49
+
50
+ - uses : actions/checkout@v4
51
+
52
+ - name : Run tests
53
+ run : |
54
+ eask package
55
+ eask install
56
+ eask compile
Original file line number Diff line number Diff line change
1
+ * .elc
2
+ /* -autoloads.el
3
+
4
+ /.eask
5
+ /dist
Original file line number Diff line number Diff line change
1
+ ;; -*- mode: eask; lexical-binding: t -*-
2
+
3
+ (package "org-static-blog"
4
+ "1.7.0"
5
+ "a simple org-mode based static blog generator")
6
+
7
+ (website-url "https://github.com/bastibe/org-static-blog")
8
+ (keywords "outlines")
9
+
10
+ (package-file "org-static-blog.el")
11
+
12
+ (script "test" "echo \"Error: no test specified\" && exit 1")
13
+
14
+ (source 'gnu)
15
+
16
+ (depends-on "emacs" "26.1")
17
+
18
+ (add-hook 'eask-before-compile-hook
19
+ (lambda ()
20
+ (setq byte-compile-error-on-warn t)
21
+ (setq byte-compile-docstring-max-column 1000)))
You can’t perform that action at this time.
0 commit comments