From 0286abe6c9082bb683ea02795b829fa6c0027dd1 Mon Sep 17 00:00:00 2001 From: moskola346 Date: Wed, 3 Sep 2025 06:18:38 -0600 Subject: [PATCH 1/2] Create c-cpp.yml --- .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..fbf32ec --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +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 185b03afa475473550c9326dc5c4a377db6e5df8 Mon Sep 17 00:00:00 2001 From: moskola346 Date: Sat, 6 Sep 2025 16:18:12 -0600 Subject: [PATCH 2/2] Update README --- README | 1 + 1 file changed, 1 insertion(+) diff --git a/README b/README index 2c13735..a4deb05 100644 --- a/README +++ b/README @@ -26,3 +26,4 @@ Copyright (C) 2007 Julien Pommier (this is the zlib license) +k