From 5cff09f6fd83b4bd9a72da889a7d3c55a8357e2f Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Wed, 29 Nov 2023 05:47:10 +0300 Subject: [PATCH] CI: make build CI --- .github/workflows/makefile.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..052826a --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,19 @@ +name: Makefile CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build with make + run: make all