From 108596e5177b60e8c001f732ddc0f7637babd01a Mon Sep 17 00:00:00 2001 From: Sopyan529 <111132036+Sopyan529@users.noreply.github.com> Date: Fri, 19 Jul 2024 07:39:26 +0700 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..6dcd648 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,27 @@ +name: Makefile CI + +on: + push: + branches: [ "vnd_x6812_h6912-user-11-RP1A.200720.011-346872-release-keys" ] + pull_request: + branches: [ "vnd_x6812_h6912-user-11-RP1A.200720.011-346872-release-keys" ] + +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