From b053cbee56036c8f68808df2a6cbd2dbcc4ec36d Mon Sep 17 00:00:00 2001 From: dgtlrift Date: Fri, 12 May 2023 11:28:57 -0400 Subject: [PATCH] Add Actions to GitHub for CI/CD (#16) * Create c-cpp.yml Testing Actions for CI/CD * Create c-cpp.yml Testing Actions for CI/CD * Delete .github/workflows directory * Update c-cpp.yml Add autogen.sh to actions * Update c-cpp.yml for all branches/pull_requests --- .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..a506a95 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + pull_request: + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: autogen.sh + run: ./autogen.sh + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck