add github actions

pull/172/head
Jan Luebbe 2019-11-25 15:29:47 +01:00
parent 9ae877ce32
commit d75122f649
1 changed files with 19 additions and 0 deletions

19
.github/workflows/autotools.yml vendored 100644
View File

@ -0,0 +1,19 @@
name: C with autotools
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure
- name: make
run: make
- name: make distcheck
run: make distcheck