From 37ce06d515f65eae146c93d29bd9e503b58c49e5 Mon Sep 17 00:00:00 2001 From: andres395 <74679318+andres395@users.noreply.github.com> Date: Mon, 1 May 2023 05:07:09 -0500 Subject: [PATCH] Create c-cpp.xml --- .github/workflows/c-cpp.xml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/c-cpp.xml diff --git a/.github/workflows/c-cpp.xml b/.github/workflows/c-cpp.xml new file mode 100644 index 000000000..a383a5241 --- /dev/null +++ b/.github/workflows/c-cpp.xml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck