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