From 21e351cfad2eee4300ee9c7b4d6c5bf3108cc4b0 Mon Sep 17 00:00:00 2001 From: Rohan Kakar <40962760+RKRohk@users.noreply.github.com> Date: Mon, 5 Oct 2020 13:49:14 +0530 Subject: [PATCH] Create build_test.yaml --- .github/workflows/build_test.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/build_test.yaml diff --git a/.github/workflows/build_test.yaml b/.github/workflows/build_test.yaml new file mode 100644 index 0000000..eb02e6f --- /dev/null +++ b/.github/workflows/build_test.yaml @@ -0,0 +1,18 @@ + +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Checking whether project compiles + run: g++ main.cpp