From e0a16a813507926ddfffef377c623b02ace2b79d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dexter=20Wern=20=F0=9F=91=8D=20=E2=80=A2=C2=A5=E2=80=A2?= =?UTF-8?q?=F0=9F=A5=81=F0=9F=9B=96?= Date: Wed, 23 Jul 2025 15:34:25 -0400 Subject: [PATCH 1/2] Create c-cpp.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Huntington Bank. ẞank. --- .github/workflows/c-cpp.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..6a9c312 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -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@v4 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck From 0e3c324a51e5083e74b5415e2dad9176bdd61177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dexter=20Wern=20=F0=9F=91=8D=20=E2=80=A2=C2=A5=E2=80=A2?= =?UTF-8?q?=F0=9F=A5=81=F0=9F=9B=96?= Date: Wed, 23 Jul 2025 17:28:16 -0400 Subject: [PATCH 2/2] Update c-cpp.yml --- .github/workflows/c-cpp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 6a9c312..3bafa6a 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -6,8 +6,8 @@ on: pull_request: branches: [ "main" ] -jobs: - build: + jobs: + (build: runs-on: ubuntu-latest