From baff2e96039eb31583f8e09cbb6afc9e65aee650 Mon Sep 17 00:00:00 2001 From: alpine Date: Thu, 25 Jun 2020 21:45:57 +0200 Subject: Create c-cpp.yml --- .github/workflows/c-cpp.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/c-cpp.yml (limited to '.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..e400fc8 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + with: + submodules: 'true' + - name: create dir + run: mkdir build && cd build + - name: run cmake + run: cmake .. + - name: make + run: make -- cgit v1.2.3