From ceb017a7325425d587dc5a2cdc0b8923ff68f20c Mon Sep 17 00:00:00 2001 From: chausner <15180557+chausner@users.noreply.github.com> Date: Thu, 21 Dec 2023 00:54:55 +0100 Subject: [PATCH] Create makefile.yml --- .github/workflows/makefile.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..06a545a --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,26 @@ +name: Makefile CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Install apt dependencies + run: | + sudo apt update + sudo apt install -y libgimp2.0-dev libjxr0 libjxr-dev + + - name: make + run: make + + - name: make install + run: make install