From 20eecef7e2d8c81850fac494f59c2a265eeb339e Mon Sep 17 00:00:00 2001 From: Keith Busch Date: Fri, 26 Jun 2020 14:46:44 -0600 Subject: [PATCH] start continuous integration Help reduce compile breakage --- .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 00000000..23aa0bfc --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,17 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: make + run: make -- 2.50.1