Merge pull request #172 from jluebbe/jluebbe-actions

add github actions
This commit is contained in:
Marc Kleine-Budde
2019-12-06 13:55:33 +01:00
committed by GitHub
+19
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