From 94a827a66c176869b7c4baf40906b9a1842ae5d2 Mon Sep 17 00:00:00 2001 From: Thorsten Sick Date: Mon, 15 Nov 2021 12:20:16 +0100 Subject: [PATCH] Create makefile.yml --- .github/workflows/makefile.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..95f0da8 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,23 @@ +name: Makefile CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Install dependencies + run: make + + - name: Run check + run: make test + +