From 3cfc6c792e1bfc2cf8781ca0346e65968e619685 Mon Sep 17 00:00:00 2001 From: Afif Ali Saadman <98092569+afifafifafifafifali@users.noreply.github.com> Date: Wed, 14 Aug 2024 12:27:32 +0600 Subject: [PATCH] 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..c7c4402 --- /dev/null +++ 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 build + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck