From 69b3be605c4bcaec9d6b226f9c8ef514d9c0b2c6 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Fri, 20 May 2022 20:53:38 -0400 Subject: [PATCH] GitHub workflows configuration --- .github/workflows/c-cpp.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..c6343ca --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,18 @@ +name: C/C++ CI + +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + run: sudo apt-get install -y clang-tools check + - name: make + run: make + - name: make test + run: make test +