From 912c63136bdb7145b1e702363962eef70e5ff690 Mon Sep 17 00:00:00 2001 From: Adam Hamsik Date: Thu, 28 Dec 2023 19:37:23 +0100 Subject: [PATCH] Create buildci.yml --- .github/workflows/buildci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/buildci.yml diff --git a/.github/workflows/buildci.yml b/.github/workflows/buildci.yml new file mode 100644 index 0000000..d4fd138 --- /dev/null +++ b/.github/workflows/buildci.yml @@ -0,0 +1,22 @@ +name: Makefile CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: configure + run: ./configure + + - name: Install dependencies + run: make +