Skip to content

Commit ffe6534

Browse files
committed
Add GitHub Actions build workflow (autotools build)
1 parent 0136f43 commit ffe6534

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/autotools.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Build
13+
run: |
14+
sudo apt install mm-common
15+
./autogen.sh; ./configure; make
16+
- name: Test
17+
run: make check
18+
- name: Distcheck
19+
run: make distcheck

0 commit comments

Comments
 (0)