From e6dd70ef48aade4cf4252b7f1d32fa24d3d8d7e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Jos=C3=A9=20Lopes=20Navarro?= Date: Mon, 10 Jun 2024 15:17:36 -0300 Subject: [PATCH] ci: 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..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