From e0c3701bfeba5004bf821daf309b942dcde5f6f5 Mon Sep 17 00:00:00 2001 From: CHMZ Developer <145115147+Hovpesmf@users.noreply.github.com> Date: Fri, 15 Sep 2023 16:22:15 +0400 Subject: [PATCH] Update c-cpp --- .github/workflows/c-cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/c-cpp diff --git a/.github/workflows/c-cpp b/.github/workflows/c-cpp new file mode 100644 index 0000000..b00b272 --- /dev/null +++ b/.github/workflows/c-cpp @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +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