From f48a4c4d6e6c5e24dc5fd3673779e995f113c3f6 Mon Sep 17 00:00:00 2001 From: stickynotememo <55744004+stickynotememo@users.noreply.github.com> Date: Fri, 19 Dec 2025 18:53:50 +1100 Subject: [PATCH] CI --- .github/workflows/makefile.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..5d91537 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,24 @@ +name: Makefile CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build_and_test: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: configure + run: ./configure + + - name: Install dependencies + run: make + + - name: Run and test + run: make run