From 5de0e33fb301f758e0675cbe6020fc543d24f7d8 Mon Sep 17 00:00:00 2001 From: oreodave Date: Wed, 4 Feb 2026 20:07:10 +0000 Subject: [PATCH] Update C/C++ workflow to use debug and release modes --- .github/workflows/c-cpp.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..6930e2a --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: make-debug + run: make MODE=debug + - name: make-release + run: make MODE=release + - name: make-test + run: make MODE=debug test