From 55326a058f414072b0337334dbca534b57f94f79 Mon Sep 17 00:00:00 2001 From: Karan2340w <138682922+Karan2340w@users.noreply.github.com> Date: Tue, 13 Aug 2024 15:14:20 +0530 Subject: [PATCH] Create makefile.yml --- .github/workflows/makefile.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/makefile.yml diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml new file mode 100644 index 0000000..f00fd30 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,27 @@ +name: Makefile CI + +on: + push: + branches: [ "halium-9.0" ] + pull_request: + branches: [ "halium-9.0" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: configure + run: ./configure + + - name: Install dependencies + run: make + + - name: Run check + run: make check + + - name: Run distcheck + run: make distcheck