From b0edc0c687767f833475623116012c061cb16129 Mon Sep 17 00:00:00 2001 From: Raymond Li Date: Sun, 8 Mar 2020 15:36:14 -0400 Subject: [PATCH] Setup GH Actions workflow for build test --- .github/workflows/Build Test.yml | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/Build Test.yml diff --git a/.github/workflows/Build Test.yml b/.github/workflows/Build Test.yml new file mode 100644 index 0000000..52b4cf2 --- /dev/null +++ b/.github/workflows/Build Test.yml @@ -0,0 +1,33 @@ +name: Build Test + +on: + push: + branches: [ master ] + paths: + - '!**.md' + - '!LICENSE' + - '!.gitignore' + pull_request: + branches: [ master ] + paths: + - '!**.md' + - '!LICENSE' + - '!.gitignore' + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: autoreconf + run: autoreconf --force --install + - name: configure + run: ./configure --disable-sanitizers + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck