From 70239f9147e11c6c6b6412cc5484f6b24aae51cc Mon Sep 17 00:00:00 2001 From: Sudhanshu Agarwal <24910339+sudhanshu2@users.noreply.github.com> Date: Mon, 27 Sep 2021 15:34:47 -0400 Subject: [PATCH] Add build testing --- .github/workflows/build.yml | 15 +++++++++++++++ 1 file changed, 15 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 00000000..160dd6ae --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,15 @@ +name: Build Testing + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - name: Build + run: mkdir build && cd build && cmake .. && make -j4 && ./dramsim3main -h