From c3f97d1a18141d14e32e9a7f855e87a981fb98df Mon Sep 17 00:00:00 2001 From: Manoj A Date: Wed, 10 Apr 2024 22:34:54 +0530 Subject: [PATCH] Create c-cpp.yml --- .github/workflows/c-cpp.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..0ba2c8d --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,21 @@ +name: C/C++ CI + +on: + push: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: configure + run: ./configure + - name: make build + run: make _build + - name: make test + run: make _test + - name: make clean + run: make clean