From df4e0bf4052eddbe4a0e09ca751c18597df852f9 Mon Sep 17 00:00:00 2001 From: Phil Burk Date: Thu, 24 Sep 2020 10:55:57 -0700 Subject: [PATCH] Create c-cpp.yml Add continuous integration build test. --- .github/workflows/c-cpp.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..10ecb69 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: configure + run: ./configure + - name: make + run: make -- 2.43.0