From e8d261b57287bb18231732dddf28151b9607ae1e Mon Sep 17 00:00:00 2001 From: Roelf Wichertjes Date: Tue, 17 Dec 2019 11:03:31 +0100 Subject: [PATCH] First try at github actions. --- .github/workflows/build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..c835a55 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Build and test (single linux distro) + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: bootstrap + run: ./bootstrap + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck +