From c6aad863e9f6a58fcac1209bc478f66f245bb465 Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 26 Sep 2024 02:21:35 +0330 Subject: [PATCH] Create makefile.yml --- .github/workflows/makefile.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..4e04db0 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,18 @@ +name: Makefile CI + +on: + push: + branches: [ "Dev" ] + pull_request: + branches: [ "Dev" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + + - name: Install dependencies + run: make +