From 2558be51ea2046b05a70e00c05bfbdfcc9064dab Mon Sep 17 00:00:00 2001 From: Kamil Cukrowski Date: Tue, 18 May 2021 16:20:32 +0200 Subject: Add github-actions testing --- .github/workflows/workflow.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/workflow.yml (limited to '.github/workflows/workflow.yml') diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 00000000..d0cb7f63 --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,19 @@ +name: "Main Workflow" +on: + pull_request: + push: + +jobs: + build_and_test: + runs-on: ubuntu-latest + steps: + - name: 'Checkout' + uses: actions/checkout@v2 + - name: 'Build & Test' + uses: ashutoshvarma/action-cmake-build@master + with: + cc: gcc + cxx: g++ + build-type: Release + configure-options: -DBUILD_TESTING=1 + run-test: true -- cgit v1.2.3