From 876aad853c4cb7506bb9a298ba206e0a538788ab Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Thu, 20 Oct 2022 09:42:52 +1100 Subject: [PATCH] Creating the CI file --- .github/workflows/c-cpp.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..d81235a --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,17 @@ +name: Running Comprehensive Tests + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: make test + run: make test