From d4ffed77ab56a90ce9548842699d8ba5986e293b Mon Sep 17 00:00:00 2001 From: Jonas Stein Date: Thu, 7 Apr 2022 20:16:55 +0200 Subject: [PATCH] Create c-cpp.yml --- .github/workflows/c-cpp.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..67fcb9d --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,29 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: autoconf + run: autoreconf -i + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck + - name: make check + run: make check + - name: make distcheck + run: make distcheck