From 102bcdd852389796acca7e029d53eb330a7c37e7 Mon Sep 17 00:00:00 2001 From: Grant Rostig Date: Sat, 3 Apr 2021 02:10:11 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 38583d8..acd6492 100644 --- a/README.md +++ b/README.md @@ -1,2 +1 @@ -# SampleCode by AlanU - Only. -Code from the meetup by AlanU - Only. +# SampleCode for group use. From 5bf90a3c18be8a477bc2ed56389e573d299e7a19 Mon Sep 17 00:00:00 2001 From: Grant Rostig Date: Sat, 3 Apr 2021 02:12:10 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index acd6492..a941af3 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# SampleCode for group use. +This is a repository for various pieces of sample code discussed by group members during out meetups, and on our chat solution, currently gitter.im . From a03dc0da391263927476f0345816cfdfbc592223 Mon Sep 17 00:00:00 2001 From: Grant Rostig Date: Wed, 18 Oct 2023 18:16:49 -0500 Subject: [PATCH 3/3] Create c-cpp.yml unedited and provided by github. --- .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..a383a52 --- /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@v3 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck