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`