From d75122f649a3b77a0a4be9f04349eea4f3f2cd4d Mon Sep 17 00:00:00 2001 From: Jan Luebbe Date: Mon, 25 Nov 2019 15:29:47 +0100 Subject: [PATCH] add github actions --- .github/workflows/autotools.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/autotools.yml diff --git a/.github/workflows/autotools.yml b/.github/workflows/autotools.yml new file mode 100644 index 0000000..5311030 --- /dev/null +++ b/.github/workflows/autotools.yml @@ -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