From d2fe3f81144421be2b920fcb1d7e58e04b3d84a2 Mon Sep 17 00:00:00 2001 From: BoomchainLabs <202796817+BoomchainLabs@users.noreply.github.com> Date: Mon, 16 Feb 2026 21:31:28 +0100 Subject: [PATCH] Add GitHub Actions workflow for Makefile CI --- .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..e60fbe0 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,27 @@ +name: Makefile CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +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