Merge pull request #172 from jluebbe/jluebbe-actions

add github actions
pull/189/merge
Marc Kleine-Budde 2019-12-06 13:55:33 +01:00 committed by GitHub
commit 665d8699eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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