From 204b73d7d90ac788c8b3bf9c8182627621b09f66 Mon Sep 17 00:00:00 2001 From: Kisaragi <48310258+KisaragiEffective@users.noreply.github.com> Date: Thu, 12 May 2022 09:46:48 +0900 Subject: [PATCH] chore(action): create build.yml --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..a67860fac --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,22 @@ +name: Build and deploy + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-20.04 + steps: + - name: Checkout repository + uses: actions/checkout@v3 + with: + submodules: 'recursive' + + - name: Build + run: | + make modules -j`nproc`