From 8f0c57db06f7db1edd9edc1c348494647daad5b5 Mon Sep 17 00:00:00 2001 From: Douglas Thain Date: Fri, 15 Dec 2023 12:58:46 -0500 Subject: [PATCH] Initial basic build test. --- .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 00000000..5c1eeef1 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,19 @@ +name: Basekernel Build + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Build + run: make +