From 10537e19a67c2513106f4280cd6ee69bfd6d79d4 Mon Sep 17 00:00:00 2001 From: xuser75 Date: Sat, 14 Mar 2026 15:00:36 -0400 Subject: [PATCH] Update CI workflow to modify build steps Removed configure, make check, and make distcheck steps. Added make tests and make examples steps. --- .github/workflows/c-cpp.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..d08733c --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,21 @@ +name: C/C++ CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: make + run: make + - name: make tests + run: make tests + - name: make examples + run: make examples