Skip to content

Commit 25dce13

Browse files
committed
Add GitHub action to run test
* .github/workflows/run_test.yml: New file.
1 parent 6a06054 commit 25dce13

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/run_test.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Run test
2+
run-name: Run test by ${{ github.actor }}
3+
4+
on:
5+
push:
6+
branches:
7+
- actions
8+
- master
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v4
16+
with:
17+
repository: wanderlust/apel
18+
path: apel
19+
- uses: actions/checkout@v4
20+
with:
21+
repository: wanderlust/flim
22+
path: flim
23+
- uses: actions/checkout@v4
24+
with:
25+
repository: wanderlust/semi
26+
path: semi
27+
- name: Install Emacs and make
28+
run: sudo apt-get install emacs make
29+
- name: Setup for test
30+
run: |
31+
echo "(setq load-path (append (list \"$PWD/apel\" \"$PWD/flim\" \"$PWD/semi\") load-path))" > WL-CFG.el
32+
- name: Run test
33+
run: make PACKAGE_LISPDIR=NONE test

0 commit comments

Comments
 (0)