From d342780fd727c829117d839ba79e9a6144ed2e95 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Sun, 23 Jun 2024 20:03:06 -0400 Subject: [PATCH] Test github action makefile.yml --- .github/workflows/makefile.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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 0000000000..907dfbc2b3 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,21 @@ +name: Makefile CI + +on: + push: + branches: [ "master", "test-ci" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Install dependencies + run: apt-get update && apt-get install -y build-essential ccache libgc-dev graphviz libunwind-dev libreadline-dev pkg-config + - name: Install dependencies + run: make + - name: Run check + run: make check