From f4ec93789767e18b6d0534b9d251d8ac9b3c3a65 Mon Sep 17 00:00:00 2001 From: TanKanT97 <108915004+TanKanT97@users.noreply.github.com> Date: Sun, 28 Jul 2024 23:59:42 -0400 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..4ac1d76 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,27 @@ +name: Makefile CI + +on: + push: + branches: [ "twrp-9.0" ] + pull_request: + branches: [ "twrp-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