From 79b68b14ecb9a0a20f922d66e19515190a5d7c43 Mon Sep 17 00:00:00 2001 From: Rob Miller Date: Sun, 21 Sep 2025 15:26:54 -0400 Subject: [PATCH] Replace multiple make commands with make build --- .github/workflows/c-cpp.yml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000..5dea4f57 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,17 @@ +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 build + run: make build