From 5d30aad3d7b38a0d5db5e66904ca172ae8177c95 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 20 Jun 2022 15:39:40 -0400 Subject: [PATCH] first run --- .github/workflows/build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..2f10eafef --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: build + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + + # run workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: make everything + run: make -j8 +