commit 9b66d74a058caecdc10f64df5e12ac5eeff0de08 parent df2eefaa5e989de032d9e7e39d4b84241aecd003 Author: Raymond Li <hi@raymond.li> Date: Sun, 8 Mar 2020 14:08:07 -0400 Add build test with GH actions Diffstat:
| A | .github/workflows/ccpp.yml | | | 33 | +++++++++++++++++++++++++++++++++ |
1 file changed, 33 insertions(+), 0 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml @@ -0,0 +1,33 @@ +name: C/C++ CI + +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
