commit deb808b9328fcc402ff4ab66be4bf4e6d4c00094 parent 00c53c15d38ffdadccaeb0f0cd434cfac5257963 Author: Amit Dutta <amitdutta4255@gmail.com> Date: Tue, 2 Sep 2025 21:55:09 +0530 Create c-cpp.yml Diffstat:
| A | .github/workflows/c-cpp.yml | | | 23 | +++++++++++++++++++++++ |
1 file changed, 23 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/c-cpp.yml 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